-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 805 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (31 loc) · 805 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
[tool.poetry]
name = "shadow-tech-test"
version = "0.0.1"
description = "Public Library Management API"
authors = ["Kaci Adjou <adjou.kaci@gmail.com>"]
readme = "README.md"
packages = [
{ include = "src" },
]
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.110.0"
SQLAlchemy = "^2.0.28"
pydantic = "^2.6.4"
uvicorn = {extras = ["standard"], version = "^0.29.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
python-multipart = "^0.0.9"
psycopg2 = "^2.9.9"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
isort = "^5.13.2"
pylint = "^3.1.0"
pytest = "^8.1.1"
httpx = "^0.27.0"
mypy = "^1.9.0"
ruff = "^0.3.4"
freezegun = "^1.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"