-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.12 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
[project]
name = "projectregistrysystem"
version = "0.1.0"
description = ""
authors = [
{name = "AnnaShcherenko"}
]
readme = "README.md"
requires-python = "^3.12"
dependencies = [
"fastapi (>=0.118.3,<0.119.0)",
"sqlalchemy (>=2.0.44,<3.0.0)",
"alembic (>=1.16.5,<2.0.0)",
"termcolor (>=3.1.0,<4.0.0)",
"uvicorn (>=0.37.0,<0.38.0)",
"pydantic (>=2.12.0,<3.0.0)",
"pydantic-settings (>=2.11.0,<3.0.0)",
"asyncpg (>=0.30.0,<0.31.0)",
"pytest (>=8.4.2,<9.0.0)",
"black (>=25.9.0,<26.0.0)",
"flake8 (>=7.3.0,<8.0.0)",
"fastapi-versionizer (>=4.0.2,<5.0.0)"
]
[tool.poetry]
packages = [{ include = "app" }]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"--strict-markers",
"--cov=app",
"--cov-report=html",
"--cov-report=term-missing",
]
[tool.poetry.group.dev.dependencies]
pytest-asyncio = "^1.2.0"
pytest-cov = "^7.0.0"
httpx = "^0.28.1"
faker = "^37.11.0"