♻️ Refactor project generation, discard cookiecutter, use plain git/clone/fork (#553)
This commit is contained in:

committed by
GitHub

parent
30c722339b
commit
455de4d9a9
46
src/backend/app/pyproject.toml
Normal file
46
src/backend/app/pyproject.toml
Normal file
@@ -0,0 +1,46 @@
|
||||
[tool.poetry]
|
||||
name = "app"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
authors = ["Admin <admin@example.com>"]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.8"
|
||||
uvicorn = ">=0.24.0.post1"
|
||||
fastapi = "^0.54.1"
|
||||
python-multipart = "^0.0.5"
|
||||
email-validator = "^1.0.5"
|
||||
requests = "^2.23.0"
|
||||
celery = "^4.4.2"
|
||||
passlib = {extras = ["bcrypt"], version = "^1.7.2"}
|
||||
tenacity = "^6.1.0"
|
||||
pydantic = "^1.4"
|
||||
emails = "^0.5.15"
|
||||
raven = "^6.10.0"
|
||||
gunicorn = "^20.0.4"
|
||||
jinja2 = "^2.11.2"
|
||||
psycopg2-binary = "^2.8.5"
|
||||
alembic = "^1.4.2"
|
||||
sqlalchemy = "^1.3.16"
|
||||
pytest = "^5.4.1"
|
||||
python-jose = {extras = ["cryptography"], version = "^3.1.0"}
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
mypy = ">=1.7.0"
|
||||
black = ">=23.11.0"
|
||||
isort = "^4.3.21"
|
||||
autoflake = "^1.3.1"
|
||||
flake8 = "^3.7.9"
|
||||
pytest = "^5.4.1"
|
||||
sqlalchemy-stubs = "^0.3"
|
||||
pytest-cov = "^2.8.1"
|
||||
|
||||
[tool.isort]
|
||||
multi_line_output = 3
|
||||
include_trailing_comma = true
|
||||
force_grid_wrap = 0
|
||||
line_length = 88
|
||||
[build-system]
|
||||
requires = ["poetry>=0.12"]
|
||||
build-backend = "poetry.masonry.api"
|
||||
|
Reference in New Issue
Block a user