-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
62 lines (55 loc) · 1.42 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
[build-system]
requires = [ "poetry-core",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pecha-api"
version = "2025.11.21.1225"
description = ""
authors = [ "tenzinsamten <iamsamten>",]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
alembic = "^1.14.0"
bcrypt = "^4.2.1"
fastapi = "^0.115.5"
passlib = "^1.7.4"
psycopg2-binary = "^2.9.10"
pyjwt = "^2.10.0"
pydantic = "^2.10.1"
python-dotenv = "^1.0.1"
python-jose = "^3.3.0"
pytest = "^8.3.3"
sqlalchemy = "^2.0.36"
starlette = "^0.41.3"
httpx = "^0.28.1"
jinja2 = "^3.1.4"
boto3 = "^1.35.97"
python-multipart = "^0.0.20"
pillow = "^11.1.0"
requests = "^2.32.3"
auth0-python = "^4.7.2"
motor = "^3.6.1"
beanie = "^1.29.0"
pytest-asyncio = "^0.25.2"
pytest-mock = "^3.14.0"
redis = "^6.0.0"
bs4 = "^0.0.2"
elasticsearch = "^9.0.1"
toml = "^0.10.2"
mailtrap = "^2.3.0"
bophono = "^0.2.0"
botok = "^0.9.0"
rich = "^14.2.0"
[tool.poetry.scripts]
start = "uvicorn:main"
[tool.coverage.run]
omit = [ "*/*_repository.py", "*/*_models.py", "*/*_init__.py", "*/db/*", "*/external_clients/*",]
[tool.coverage.report]
exclude_lines = [ "pragma: no cover", "def __repr__", "if self.debug:", "raise NotImplementedError", "if __name__ == .__main__.:", "pass", "raise ImportError",]
[tool.poetry.dependencies.uvicorn]
extras = [ "standard",]
version = "^0.32.1"
[tool.poetry.group.dev.dependencies]
coverage = "^7.6.8"
pytest-cov = "^6.0.0"
openapi-python-client = "^0.28.3"