-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (40 loc) · 971 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
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pyagnostics"
version = "2.0.2"
description = ""
authors = ["RISQ Capital <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "pyagnostics", from = "src" }]
classifiers = []
keywords = []
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/risqcapital/pyagnostics/issues"
Repository = "https://github.com/risqcapital/pyagnostics"
[tool.poetry.dependencies]
python = ">= 3.11, < 4"
rich = ">= 13, < 14"
[tool.poetry.group.dev.dependencies]
ruff = "*"
mypy = "*"
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
extend-select = [
"W", # pyflakes warnings
"I", # isort
"N", # pep8 naming
"UP", # pyupgrade
"ANN", # flake8 annotations
"ERA", # eradicate
"PL", # pylint
"TRY", # tryceratops
"RUF", # ruf,
"FA102" # future-required-type-annotation
]
extend-ignore = [
"TRY003"
]