-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.18 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
[tool.poetry]
name = "ssd-fastapi-tile38"
version = "0.1.0"
description = "SSD using FastAPI and Tile38"
authors = ["James Jackson <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.109.2"
pyle38 = "^0.11.3"
pydantic = "^2.7.1"
fastapi-key-auth = "^0.15.2"
pydantic-settings = "^2.2.1"
[tool.poetry.group.dev.dependencies]
pytest-asyncio = "^0.23.7"
pytest = "^8.2.1"
pre-commit = "^3.7.1"
gitlint = "^0.19.1"
poethepoet = "^0.26.1"
isort = "^5.13.2"
pytest-cov = "^5.0.0"
flake8 = "^7.0.0"
uvicorn = "^0.29.0"
requests = "^2.32.2"
httpx = "^0.27.0"
mypy = "^1.10"
ruff = "^0.4.5"
[mypy]
python_version = 3.10
ignore_missing_imports = true
[tool.poe.tasks]
test = "poetry run pytest -vv --asyncio-mode=auto -s src/tests/"
test-cov = "poetry run pytest -vv --asyncio-mode=auto -s --cov=fastapi-tile38 src/tests/"
test-single = "poetry run pytest -vv --asyncio-mode=auto -s"
mypy = "poetry run mypy --ignore-missing-imports --config-file pyproject.toml"
lint = "flake8 ."
up = "docker-compose up"
down = "docker-compose down"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"