-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
117 lines (101 loc) · 2.67 KB
/
pyproject.toml
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tbp-overlay-cider-bridge"
version = "0.1.0"
requires-python = ">= 3.12"
dependencies = [
"fastapi>=0.115.4",
"websockets>=13.1",
"python-socketio[asyncio_client]>=5.11.4",
"httpx>=0.27.2",
]
[tool.rye]
managed = true
dev-dependencies = [
"pre-commit>=4.0.1",
"ruff~=0.7.1",
]
[tool.rye.scripts]
setup = { chain = ["setup:sync", "setup:pre-commit"] }
"setup:sync" = "rye sync"
"setup:pre-commit" = "pre-commit install"
main = { call = "parrot_cider.main" }
[tool.hatch.build.targets.wheel]
packages = [
"src/parrot_cider",
]
# linting/formatting
[tool.ruff]
extend-exclude = [
"**/venv",
"**/.*",
"**/__pycache__",
]
[tool.ruff.lint]
extend-select = [
"I", # import sorting
"RUF022", # __all__ sorting
]
extend-ignore = [
# covered by Pyright
"F821", # undefined variable
"F401", # imported but unused
"F841", # unused variable
]
[tool.ruff.lint.isort]
combine-as-imports = true
# type checking
[tool.pyright]
venvPath = "."
venv = ".venv"
exclude = [
"venv",
".venv",
]
typeCheckingMode = "basic"
enableExperimentalFeatures = true
strictDictionaryInference = true
strictListInference = true
strictSetInference = true
reportAssertAlwaysTrue = "error"
reportConstantRedefinition = "error"
reportDeprecated = "error"
reportFunctionMemberAccess = "error"
reportIncompatibleMethodOverride = "error"
reportIncompatibleVariableOverride = "error"
reportIncompleteStub = "error"
reportInconsistentConstructor = "error"
reportInvalidStringEscapeSequence = "error"
reportInvalidStubStatement = "error"
reportInvalidTypeVarUse = "error"
reportMatchNotExhaustive = "error"
reportMissingParameterType = "error"
reportOverlappingOverload = "error"
reportSelfClsParameterName = "error"
reportTypeCommentUsage = "error"
reportUnknownParameterType = "error"
reportUnnecessaryCast = "error"
reportUnnecessaryContains = "error"
reportUnsupportedDunderAll = "error"
reportUntypedBaseClass = "error"
reportUntypedClassDecorator = "error"
reportUntypedFunctionDecorator = "error"
reportUntypedNamedTuple = "error"
reportWildcardImportFromLibrary = "error"
reportMissingTypeArgument = "warning"
reportPrivateUsage = "warning"
reportUnknownArgumentType = "warning"
reportUnknownLambdaType = "warning"
reportUnknownMemberType = "warning"
reportUnknownVariableType = "warning"
reportUnnecessaryComparison = "warning"
reportUnnecessaryIsInstance = "warning"
reportUnusedClass = "warning"
reportUnusedExpression = "warning"
reportUnusedFunction = "warning"
reportUnusedImport = "warning"
reportUnusedVariable = "warning"
reportMissingTypeStubs = "none"
reportDuplicateImport = "none"