-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (30 loc) · 911 Bytes
/
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
[project]
name = "pokeball-calculator"
version = "1.0.0"
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
authors = [{ "name" = "GuilhermeCAz" }, { "name" = "marcelogcardozo" }]
dependencies = ["streamlit"]
[project.optional-dependencies]
dev = ["mypy", "pandas-stubs", "pip-tools", "ruff", "types-requests"]
[tool.pip-tools]
strip-extras = true
[tool.mypy]
strict = true
[tool.ruff]
line-length = 79
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint]
select = ["ALL"]
extend-ignore = [
"ANN101", # missing-type-self: deprecated
"D203", # one-blank-line-before-class: clashes with D211
"D212", # multi-line-summary-first-line: clashes with D213
"Q000", # quotes: single quotes are preferred
"PIE796", # non-unique-enums
"D", # pydocstyle: removed during early development
]
[tool.ruff.lint.per-file-ignores]
"tests.py" = ["S101"]