-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 1009 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
[tool.poetry]
name = "safeack-backend"
version = "0.1.0"
description = ""
authors = ["Dhrumil Mistry <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.109.0"
uvicorn = {extras = ["standard"], version = "^0.27.0"}
pyjwt = "^2.8.0"
python-decouple = "^3.8"
pydantic = {extras = ["email"], version = "^2.5.3"}
sqlalchemy = "^2.0.25"
alembic = "^1.13.1"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
ipython = "^8.20.0"
python-multipart = "^0.0.7"
boto3 = "^1.34.44"
gunicorn = "^21.2.0"
httpx = {version = "^0.27.0", optional = true}
pytest = {version = "^8.1.1", optional = true}
flake8 = {version = "^7.0.0", optional = true}
psycopg2 = "^2.9.9"
[tool.poetry.extras]
test = ["pytest", "httpx", "flake8"]
[tool.poetry.group.dev.dependencies]
poetry = "^1.7.1"
[tool.poetry.scripts]
safeack-backend = "safeack_backend.__main__:start"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"