-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
71 lines (63 loc) · 1.73 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
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "python-open-restaurant-fastapi"
version = "0.1.0"
description = ""
authors = ["Matthew Lonis <mattlonis@gmail.com>"]
license = "The Unlicense"
readme = "README.md"
packages = [{ include = "python_open_restaurant_fastapi" }]
package-mode = false
[tool.poetry.dependencies]
python = "^3.14.3"
alembic = "^1.18.4"
alembic-utils = "^0.8.8"
asyncpg = "^0.31.0"
fastapi = "^0.135.2"
httpx = "^0.28.1"
psycopg2-binary = "^2.9.11"
pydantic = "^2.12.5"
pydantic-settings = "^2.13.1"
sqlalchemy = { version = "^2.0.48", extras = ["asyncio"] }
sqlalchemy-utils = "^0.42.1"
sqlmodel = "^0.0.37"
[tool.poetry.group.test.dependencies]
coverage = "^7.13.5"
flake8 = "^7.3.0"
psycopg = "^3.3.3"
pylint = "^4.0.4"
pylint-junit = "^0.3.5"
pytest = "^9.0.2"
pytest-asyncio = "^1.3.0"
pytest-cov = "^7.1.0"
pytest-postgresql = "^8.0.0"
pytest-watch = "^4.2.0"
pytest-xdist = { version = "^3.8.0", extras = ["psutil"] }
[tool.poetry.group.dev.dependencies]
black = "^26.3.1"
click = "^8.3.1"
configupdater = "^3.1.1"
devtools = "^0.12.2"
isort = "^8.0.1"
pre-commit = "^4.5.1"
ruamel-yaml = "^0.19.1"
tomlkit = "^0.14.0"
tox = "^4.50.3"
uvicorn = { version = "^0.42.0", extras = ["standard"] }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 125
[tool.isort]
line_length = 125
profile = "black"
[tool.pytest.ini_options]
addopts = "--ignore=./utility-repo-scripts"
asyncio_default_fixture_loop_scope = "function"
log_cli = false
log_cli_level = "WARNING"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
markers = ["docker: marks tests as docker (deselect with '-m \"not docker\"')"]
[tool.mypy]
plugins = "pydantic.mypy"