-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (41 loc) · 1.02 KB
/
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
[tool.poetry]
name = "python-template"
version = "0.1.0"
description = "Xmartlabs' Python project template"
authors = ["Xmartlabs <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
alembic = "^1.13.2"
bcrypt = "4.0.1"
email-validator = "^2.2.0"
fastapi = "^0.111.1"
fastapi-pagination = "^0.12.26"
itsdangerous = "^2.2.0"
passlib = "^1.7.4"
psycopg2 = "^2.9.9"
ptpython = "^3.0.29"
pydantic = "^2.8.2"
pydantic-settings = "^2.4.0"
python-jose = "^3.3.0"
sqladmin = "^0.18.0"
sqlalchemy = "^2.0.31"
uvicorn = "^0.30.3"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
flake8 = "^7.1.0"
isort = "^5.13.2"
mypy = "^1.11.1"
mypy-extensions = "^1.0.0"
pycln = "^2.4.0"
pytest = "^8.3.2"
[tool.poetry.group.types.dependencies]
types-passlib = "^1.7.7.20240327"
types-pyasn1 = "^0.6.0.20240402"
types-python-jose = "^3.3.4.20240106"
typing-inspect = "^0.9.0"
typing-extensions = "^4.12.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"