-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 862 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
[tool.poetry]
name = "excercise_backend"
version = "0.2.0"
description = "REST API for the Stock Exchange"
authors = ["Andrew Yourkin <[email protected]>"]
readme = "README.md"
packages = [{include = "ex_back", from = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "1.10.12"
uvicorn = {version = "0.23.2", extras = ["standard"]}
fastapi = "0.100.1"
psycopg2-binary = "^2.9.1"
asyncpg = "^0.28.0"
celery = "^5.3.1"
requests = "^2.31.0"
httpx = "^0.24.1"
sqlalchemy = "^2.0.19"
gunicorn = {version = "^21.2.0", optional = true}
alembic = "^1.11.3"
python-decouple = "^3.8"
pika = "^1.3.2"
[tool.poetry.dev-dependencies]
pytest = "^7.4.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
black = "^23.7.0"
isort = "^5.12.0"
pytest-asyncio = "^0.21.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"