-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 795 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (35 loc) · 795 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
37
38
39
40
41
[tool.poetry]
name = "sota-vicg-be"
version = "0.1.0"
description = "FastAPI Core Base"
authors = ["Tung Tran <tttung.everest@outlook.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.8"
fastapi = "*"
httpx = "*"
uvicorn = "*"
gunicorn = "*"
python-dotenv = "*"
google-cloud-storage = "*"
google-cloud-logging = "*"
google-cloud-datastore = "*"
google-cloud-pubsub = "*"
google-gax = "*"
google-api-core = "*"
pyhamcrest = "^2.1.0"
pydantic-settings = "^2.1.0"
redis = "^5.0.1"
sqlalchemy = "^2.0.23"
psycopg2-binary = "^2.9.9"
retry = "^0.9.2"
[tool.poetry.group.dev.dependencies]
black = "*"
pytest = "*"
coverage = "*"
pytest_httpx = "*"
pytest-asyncio = "*"
pytest-mock = "*"
[build-system]
requires = ["poetry-core>=1.7.0"]
build-backend = "poetry.core.masonry.api"