-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (52 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
63 lines (52 loc) · 1.44 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "codepraise-api-python"
version = "0.1.0"
description = ""
authors = ["as10896"]
readme = "README.md"
packages = [{include = "app"}]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.28.1"
pydantic = "^1.9.1"
fastapi = "^0.78.0"
uvicorn = {extras = ["standard"], version = "^0.18.2"}
python-dotenv = "^0.20.0"
invoke = "^1.7.1"
SQLAlchemy = "^1.4.39"
returns = "^0.19.0"
celery = {extras = ["sqs"], version = "^5.2.7"}
boto3 = "^1.24.26" # to connect to Amazon SQS
orjson = "^3.7.7" # to use ORJSONResponse for better JSON serialization performance
[tool.poetry.group.prod]
optional = true
[tool.poetry.group.prod.dependencies]
alembic = "^1.8.0"
asyncio-redis = "^0.16.0" # to connect to Redis for PubSub over WebSocket in production
ipython = "^8.4.0"
gunicorn = "^20.1.0"
psycopg2 = {markers = "sys_platform == 'linux'", version = "^2.9.3"}
psycopg2-binary = {markers = "sys_platform != 'linux'", version = "^2.9.3"}
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
alembic = "^1.8.0"
ipython = "^8.4.0"
flake8 = "^4.0.1"
radon = "^5.1.0"
isort = "^5.10.1"
black = "^22.6.0"
mypy = "^0.961"
pre-commit = "^2.20.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
vcrpy = "^4.2.0"
pytest-asyncio = "^0.18.3"
PyYAML = "^6.0"
requests-mock = "^1.9.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"