-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (49 loc) · 1.17 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 = "python_poetry_empty"
version = "0.1.0"
description = ""
authors = ["miragecentury <[email protected]>"]
readme = "README.md"
packages = [
{ include = "python_poetry_empty", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.12"
structlog = "^24.1.0"
typer = "^0.12.3"
fastapi = "^0.115.6"
uvicorn = "^0.32.1"
beanie = "^1.27.0"
aio-pika = "^9.5.3"
[tool.poetry.group.test.dependencies]
mypy = "^1.10.0"
types-pyyaml = "^6.0.12.20240311"
pylint = {version="^3.2.2", extras=["spelling"]}
black = "^24.4.2"
pre-commit = "^3.7.1"
pyupgrade = "^3.15.2"
pytest = "^8.2.0"
pytest-xdist = "^3.6.1"
pytest-cov = "^5.0.0"
httpx = "^0.28.1"
pytest-asyncio = "^0.24.0"
[tool.poetry.extras]
[tool.poetry.scripts]
python-poetry-empty = "python_poetry_empty.__main__:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "tests/units -n auto --color=yes"
filterwarnings = [
]
[tool.black]
line-length = 120
target-version = ['py312']
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.12"
warn_unused_configs = true
packages = "python_poetry_empty"
mypy_path = "src:tests"