-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1018 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "walrus"
version = "0.1.0"
description = "FastAPI Backend app"
authors = ["John Philip <developerphilo@gmail.com>"]
license = "GNU"
readme = "README.md"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
pytest = "^7.4.3"
[tool.poe.tasks]
dev = "python3 src/main.py"
con_db = "python3 src/create_db.py"
test = "pytest"
[tool.poetry.dependencies]
python = "^3.11"
python-dotenv = "^1.0.0"
alembic = "1.12.0"
bcrypt = "==4.0.*"
psycopg2 = "==2.9.*"
python-jose = "==3.3.*"
sqlalchemy = "2.0.20"
httpx = "==0.24.*"
fastapi = "^0.103.1"
pydantic = {extras = ["email"], version = "^2.3.0"}
asyncpg = "==0.28.*"
uvicorn = "0.22.0"
pydantic-settings = "==2.0.*"
cloudinary = "^1.34.0"
pyjwt = "^2.8.0"
python-multipart = "^0.0.6"
locust = "^2.16.1"
mysql-connector-python = "^8.1.0"
[tool.poetry.dev-dependencies]
fastapi = "^0.103.1"
poethepoet = "^0.22.1"
[tool.pytest]
addopts = ["-vv", "--cov=my_project"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"