-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1018 Bytes
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1018 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
42
43
[tool.poetry]
authors = ["Elton Chou <plscd748@gmail.com>"]
description = ""
name = "hook_api"
version = "0.0.1"
[tool.poetry.dependencies]
SQLAlchemy = { extras = ["mypy"], version = "^2.0.0" }
fastapi = { extras = ["all"], version = "^0.78.0" }
pydantic = "^1.9.1"
python = "^3.9"
python-dotenv = "^0.20.0"
pytz = "^2022.1"
sqlalchemy-mixins = "^2.0.0"
uvicorn = { extras = ["standard"], version = "^0.17.6" }
fastapi-pagination = "^0.9.3"
asgi-correlation-id = "^3.0.0"
asyncpg = "^0.26.0"
psycopg2-binary = "^2.9.3"
cryptography = "^38.0.1"
[tool.poetry.dev-dependencies]
Faker = "^13.11.1"
alembic = "^1.7.7"
autopep8 = "^1.6.0"
coverage = "^6.3.3"
mypy = "^0.960"
pytest = "^7.1.2"
pytest-mock = "^3.7.0"
types-pytz = "^2021.3.8"
pytest-xdist = "^2.5.0"
types-psycopg2 = "^2.9.21"
flake8 = "^5.0.4"
[tool.mypy]
python_version = "3.9"
files = ["app/"]
warn_unused_configs = true
plugins = "sqlalchemy.ext.mypy.plugin"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]