-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 884 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 884 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
[tool.poetry]
name = "fob-api"
version = "0.1.0"
description = "FastOnBoard-API"
authors = ["msterhuj <gabin.lanore@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = {extras = ["standard"], version = "^0.115.3"}
uvicorn = {extras = ["standard"], version = "^0.32.0"}
sqlmodel = "^0.0.22"
python-dotenv = "^1.0.1"
pyjwt = "^2.9.0"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
python-jose = "^3.3.0"
bcrypt = "^3.2.0"
celery = "^5.4.0"
redis = "^5.2.0"
flower = "^2.0.1"
alembic = "^1.13.3"
pymysql = "^1.1.1"
requests = "^2.32.3"
jinja2 = "^3.1.4"
python-keystoneclient = "^5.5.0"
python-novaclient = "^18.8.0"
python-cinderclient = "^9.6.0"
python-neutronclient = "^11.4.0"
pytest = "^8.3.5"
pytest-cov = "^6.1.1"
httpx = "^0.28.1"
dnspython = "^2.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"