2020-04-19 00:27:48 +03:00
|
|
|
[tool.poetry]
|
|
|
|
name = "app"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
authors = ["Admin <admin@example.com>"]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-11-15 04:14:19 +08:00
|
|
|
python = "^3.8"
|
|
|
|
uvicorn = ">=0.24.0.post1"
|
2020-04-19 00:27:48 +03:00
|
|
|
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"
|
:recycle: Refactor backend, settings, DB sessions, types, configs, plugins (#158)
* :recycle: Refactor backend, update DB session handling
* :sparkles: Add mypy config and plugins
* :heavy_plus_sign: Use Python-jose instead of PyJWT
as it has some extra functionalities and features
* :sparkles: Add/update scripts for test, lint, format
* :wrench: Update lint and format configs
* :art: Update import format, comments, and types
* :art: Add types to config
* :sparkles: Add types for all the code, and small fixes
* :art: Use global imports to simplify exploring with Jupyter
* :recycle: Import schemas and models, instead of each class
* :truck: Rename db_session to db for simplicity
* :pushpin: Update dependencies installation for testing
2020-04-20 19:03:13 +02:00
|
|
|
python-jose = {extras = ["cryptography"], version = "^3.1.0"}
|
2020-04-19 00:27:48 +03:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2023-11-15 04:14:19 +08:00
|
|
|
mypy = ">=1.7.0"
|
|
|
|
black = ">=23.11.0"
|
2020-04-19 00:27:48 +03:00
|
|
|
isort = "^4.3.21"
|
|
|
|
autoflake = "^1.3.1"
|
|
|
|
flake8 = "^3.7.9"
|
|
|
|
pytest = "^5.4.1"
|
:recycle: Refactor backend, settings, DB sessions, types, configs, plugins (#158)
* :recycle: Refactor backend, update DB session handling
* :sparkles: Add mypy config and plugins
* :heavy_plus_sign: Use Python-jose instead of PyJWT
as it has some extra functionalities and features
* :sparkles: Add/update scripts for test, lint, format
* :wrench: Update lint and format configs
* :art: Update import format, comments, and types
* :art: Add types to config
* :sparkles: Add types for all the code, and small fixes
* :art: Use global imports to simplify exploring with Jupyter
* :recycle: Import schemas and models, instead of each class
* :truck: Rename db_session to db for simplicity
* :pushpin: Update dependencies installation for testing
2020-04-20 19:03:13 +02:00
|
|
|
sqlalchemy-stubs = "^0.3"
|
|
|
|
pytest-cov = "^2.8.1"
|
2020-04-19 00:27:48 +03:00
|
|
|
|
:recycle: Refactor backend, settings, DB sessions, types, configs, plugins (#158)
* :recycle: Refactor backend, update DB session handling
* :sparkles: Add mypy config and plugins
* :heavy_plus_sign: Use Python-jose instead of PyJWT
as it has some extra functionalities and features
* :sparkles: Add/update scripts for test, lint, format
* :wrench: Update lint and format configs
* :art: Update import format, comments, and types
* :art: Add types to config
* :sparkles: Add types for all the code, and small fixes
* :art: Use global imports to simplify exploring with Jupyter
* :recycle: Import schemas and models, instead of each class
* :truck: Rename db_session to db for simplicity
* :pushpin: Update dependencies installation for testing
2020-04-20 19:03:13 +02:00
|
|
|
[tool.isort]
|
|
|
|
multi_line_output = 3
|
|
|
|
include_trailing_comma = true
|
|
|
|
force_grid_wrap = 0
|
|
|
|
line_length = 88
|
2020-04-19 00:27:48 +03:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|
:recycle: Refactor backend, settings, DB sessions, types, configs, plugins (#158)
* :recycle: Refactor backend, update DB session handling
* :sparkles: Add mypy config and plugins
* :heavy_plus_sign: Use Python-jose instead of PyJWT
as it has some extra functionalities and features
* :sparkles: Add/update scripts for test, lint, format
* :wrench: Update lint and format configs
* :art: Update import format, comments, and types
* :art: Add types to config
* :sparkles: Add types for all the code, and small fixes
* :art: Use global imports to simplify exploring with Jupyter
* :recycle: Import schemas and models, instead of each class
* :truck: Rename db_session to db for simplicity
* :pushpin: Update dependencies installation for testing
2020-04-20 19:03:13 +02:00
|
|
|
|