-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 757 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[project]
name = "objectstore"
version = "0.0.0"
requires-python = ">=3.11"
[tool.uv]
required-version = ">=0.9.18"
[[tool.uv.index]]
url = "https://pypi.devinfra.sentry.io/simple"
default = true
[tool.uv.workspace]
members = [
"clients/python",
]
[dependency-groups]
dev = [
"devservices>=1.2.2",
"pytest>=8.3.3",
"mypy>=1.17.1",
"ruff>=0.14.2",
"pre-commit>=4.2.0",
]
docs = [
"sphinx>=8.1.3",
"sphinx-rtd-theme>=3.0.1",
]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"] # pycodestyle, pyflakes, isort, pyupgrade
[tool.mypy]
no_implicit_reexport = true
warn_unreachable = true
warn_redundant_casts = true
local_partial_types = true
disallow_any_generics = true
disallow_untyped_defs = true
warn_unused_configs = true