-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.39 KB
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
[tool.poetry]
name = "perigon"
version = "0.0.0"
description = "Perigon API"
authors = ["Perigon Support <data@perigon.io>"]
license = "NoLicense"
readme = "README.md"
repository = "https://github.com/goperigon/perigon-python"
keywords = ["OpenAPI", "OpenAPI-Generator", "Perigon API"]
include = ["perigon/py.typed"]
[tool.poetry.dependencies]
python = "^3.9"
# ---- core runtime dependencies ----
httpx = ">= 0.27, < 1.0"
python-dateutil = ">= 2.8.2"
pydantic = ">= 2"
typing-extensions = ">= 4.7.1"
[tool.poetry.group.dev.dependencies]
isort = ">= 6.0.1"
black = ">=25.1.0"
pytest = ">= 7.2.1"
pytest-cov = ">= 2.8.1"
tox = ">= 3.9.0"
flake8 = ">= 4.0.0"
types-python-dateutil = ">= 2.8.19.14"
mypy = ">= 1.5"
[tool.poetry-dynamic-versioning]
enable = true # plugin only activates if this flag is on
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = "pydantic"
[tool.mypy]
files = [
"perigon",
"tests",
]
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
strict_equality = true
extra_checks = true
check_untyped_defs = true
disallow_subclassing_any = true
disallow_untyped_decorators = true
disallow_any_generics = true
disallow_untyped_calls = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_reexport = true
warn_return_any = true