-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (85 loc) · 2.26 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (85 loc) · 2.26 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = "seerapi-monorepo"
version = "106.6.0"
description = "SeerAPI Monorepo"
requires-python = ">=3.10"
[tool.uv.workspace]
members = [
"packages/seerapi-models",
"packages/seerapi-python",
"packages/solaris",
]
[dependency-groups]
tests = ["pytest>=9.0.1"]
docs = [
"markdown-include-variants>=0.0.5",
"mdx-include>=1.4.2",
"mkdocs-git-revision-date-localized-plugin>=1.5.0",
"mkdocs-material>=9.7.0",
"pymdown-extensions>=10.17.1",
]
dev = [
{ include-group = "tests" },
{ include-group = "docs" },
"albi0>=0.5.3",
"ruff>=0.13.0",
"seerapi-solaris",
]
[tool.uv.sources]
seerapi-solaris = { workspace = true }
[tool.pyright]
pythonVersion = "3.10"
pythonPlatform = "All"
typeCheckingMode = "standard"
reportShadowedImports = false
disableBytesTypePromotions = true
extraPaths = [
"packages/solaris",
"packages/seerapi-models",
"packages/seerapi-python",
]
reportImplicitAbstractClass = "error"
[tool.ruff]
line-length = 88
target-version = "py310"
exclude = ["./scripts", "./docs", "./docs_src"]
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
line-ending = "lf"
docstring-code-format = false
[tool.ruff.lint]
select = [
"F", # Pyflakes
"W", # pycodestyle warnings
"E", # pycodestyle errors
"UP", # pyupgrade
"ASYNC", # flake8-async
"C4", # flake8-comprehensions
"T10", # flake8-debugger
"T20", # flake8-print
"PYI", # flake8-pyi
"PT", # flake8-pytest-style
"Q", # flake8-quotes
"I", # isort
"RUF", # Ruff-specific rules
]
ignore = [
"Q000", # bad-quotes-inline-string
"Q001", # bad-quotes-multiline-string
"Q002", # bad-quotes-docstring
"Q003", # avoidable-escaped-quote
"E402", # module-import-not-at-top-of-file
"UP037", # quoted-annotation
"RUF001", # ambiguous-unicode-character-string
"RUF002", # ambiguous-unicode-character-docstring
"RUF003", # ambiguous-unicode-character-comment
"E501", # line-too-long
]
[tool.ruff.lint.isort]
force-sort-within-sections = true
known-first-party = ["seerapi", "seerapi_models", "solaris"]
extra-standard-library = ["typing_extensions"]
[tool.ruff.lint.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false