-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (45 loc) · 1006 Bytes
/
pyproject.toml
File metadata and controls
48 lines (45 loc) · 1006 Bytes
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
[tool.poetry]
name = "database-api"
version = "0.1.0"
description = "database management system"
authors = ["Your Name <you@example.com>"]
readme = "README.md"
packages = [
{ include = "app" },
]
[tool.poetry.scripts]
update_users = "scripts.update_users:cli"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.109.2"
uvicorn = "^0.27.1"
pydantic-settings = "^2.1.0"
psycopg2-binary = "^2.9.9"
sqlalchemy = "^2.0.27"
pyjwt = "^2.8.0"
bcrypt = "^4.1.2"
python-jose = "^3.3.0"
passlib = "^1.7.4"
sqlalchemy-utils = "^0.41.1"
mysql-connector-python = "^8.3.0"
python-dotenv = "^1.0.1"
alembic = "^1.13.1"
requests = "^2.31.0"
pytest = "7.4.2"
pytest-cov = "4.1.0"
httpcore = "^1.0.4"
httpx = "^0.27.0"
pyyaml = "^6.0.1"
pylint = "^3.1.0"
coverage = "^6.1.1"
coveralls = "^3.3.1"
mypkg = "^1.0.0"
starlette= "0.36.3"
fastapi-mail = "^1.4.1"
celery = "^5.4.0"
flower = "^2.0.1"
redis = "^5.0.4"
typer = "^0.15.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"