-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.21 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
[tool.poetry]
name = "cbsserverbilling"
version = "0.1.0"
description = ""
authors = ["Tristan Kuehn <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.5.3"
Jinja2 = "^3.1.2"
openpyxl = "^3.1.1"
typing-extensions = "^4.8.0"
backports-zoneinfo = { version = "^0.2.1", python = "<3.9" }
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.12.0"
pyright = "^1.1.296"
ruff = "^0.0.263"
pandas-stubs = "^2.0.0.230412"
[tool.poetry.scripts]
cbsserverbilling = 'cbsserverbilling.main:main'
[tool.pyright]
typeCheckingMode = "strict"
reportInconsistentConstructor = false
reportMissingParameterType = false
reportMissingTypeArgument = false
reportMissingTypeStubs = false
reportUnnecessaryTypeIgnoreComment = true
reportUnknownArgumentType = false
reportUnusedExpression = false
reportUnknownLambdaType = false
reportUnknownMemberType = false
reportUnknownParameterType = false
reportUnknownVariableType = false
reportUntypedBaseClass = false
reportUnusedVariable = false
reportPrivateUsage = false
[tool.ruff]
select = ["ALL"]
ignore = ["ANN101", "ANN102", "TCH", "T20"]
unfixable = ["F841"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"