-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 811 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 811 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 = "codeshare-back"
version = "0.1.0"
description = ""
authors = ["Neeraj319 <itskop520@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.78.0"
python-dotenv = "^0.20.0"
aerich = "^0.6.3"
fastapi-pagination = "^0.9.3"
passlib = "^1.7.4"
python-jose = "^3.3.0"
uvicorn = {extras = ["standard"], version = "^0.18.1"}
asyncpg = "^0.25.0"
bcrypt = "^3.2.2"
psycopg2-binary = "^2.9.3"
gunicorn = "^20.1.0"
pip = "^22.1.2"
redis = "^4.3.3"
pytest = "^7.1.2"
Faker = "^13.15.0"
pytest-ordering = "^0.6"
[tool.poetry.dev-dependencies]
black = {version = "^22.3.0", allow-prereleases = true}
[tool.aerich]
tortoise_orm = "main.TORTOISE_ORM"
location = "./migrations"
src_folder = "./."
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"