testdata/pyproject.toml

45 lines
834 B
TOML
Raw Normal View History

2025-01-02 17:18:57 +00:00
[project]
name = "testdata"
version = "1.1.0"
2025-01-04 00:05:40 +00:00
requires-python = "~=3.12, <4"
2025-01-02 17:18:57 +00:00
dependencies = [
2025-01-04 00:05:40 +00:00
"fastapi~=0.115.3",
"uvicorn~=0.32.0",
"pydantic~=2.9.2",
2025-01-02 17:18:57 +00:00
]
2024-04-10 16:26:38 +00:00
2025-01-02 17:18:57 +00:00
[project.optional-dependencies]
dev = [
2025-01-04 00:05:40 +00:00
"pytest~=8.3.4",
"mypy~=1.13.0",
"pylint~=3.3.3",
"requests~=2.32.3",
"types-requests~=2.32.0"
2025-01-02 17:18:57 +00:00
]
2024-04-10 16:26:38 +00:00
2025-01-02 17:18:57 +00:00
[project.scripts]
testdata = "testdata.main:main"
2024-04-10 16:26:38 +00:00
[build-system]
2025-01-04 00:05:40 +00:00
requires = ["setuptools~=75.1.1"]
2025-01-02 17:18:57 +00:00
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
testdata = ["py.typed"]
[tool.autopep8]
max_line_length = 150
[tool.pylint.'MESSAGES CONTROL']
disable = [
"line-too-long",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"too-few-public-methods",
"broad-exception-caught"
]