-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.23 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "ultimate-fastapi-sqlmodel"
version = "0.1.1"
description = ""
authors = ["Evans Pauliuts <[email protected]>"]
#packages = [
# {include = "exec_scripts", from = "app"}
#]
[tool.poetry.dependencies]
python = "^3.10.11"
fastapi = "^0.79.0"
uvicorn = "^0.18.2"
python-multipart = "^0.0.5"
email-validator = "^1.2.1"
requests = "^2.28.1"
celery = "^5.2.7"
emails = "^0.6"
raven = "^6.10.0"
gunicorn = "^20.1.0"
Jinja2 = "^3.1.2"
alembic = "^1.8.1"
sqlmodel = "^0.0.6"
pytest = "^7.1.2"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
tenacity = "^8.0.1"
python-dotenv = "^0.20.0"
pre-commit = "^2.20.0"
SQLAlchemy = "^1.4.39"
psycopg2 = "^2.9.3"
redis = "^4.3.4"
[tool.poetry.dev-dependencies]
mypy = "^0.971"
isort = "5.0.0"
black = "^22.6.0"
autoflake = "^1.4"
flake8 = "^4.0.1"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
toml = "^0.10.2"
bandit = "^1.7.4"
[tool.black]
skip-string-normalization = true
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 88
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
#[tool.poetry.scripts]
#ps = "app.exec_scripts.prestart:pre_config"