-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (49 loc) · 1.26 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
[tool.poetry]
name = "atro-core"
version = "0.0.1"
description = "Package containing generic/reusable content one can reuse in many projects."
authors = ["atropos <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "atro_core", from = "src" }]
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.7.1"
rope = "^1.13.0"
ipython = "^8.31.0"
[tool.poetry.group.dev.dependencies]
types-pyyaml = "^6.0.12.20240311"
pytest-isort = "^4.0.0"
pytest = "^8.0.2"
pytest-mock = "*"
pytest-cov = ">=4.1,<7.0"
pytest-mypy-plugins = "^3.1.0"
basedmypy = "^2.4.0"
basedpyright = "^1.13.1"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-include-markdown-plugin = ">=6.0.5,<8.0.0"
mkdocs-material = "^9.5.15"
mkdocstrings = ">=0.25,<0.28"
mkdocstrings-python = "^1.9.0"
[tool.poetry.group.args.dependencies]
python-dotenv = "^1.0.1"
[tool.poetry.group.logging.dependencies]
stackprinter = "^0.2.12"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 140
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true
disable_error_code = [
"truthy-bool",
"truthy-iterable",
"no-untyped-usage",
"possibly-undefined",
"explicit-override",
"redundant-expr",
"no-any-expr",
]