luthor/luthor/pyproject.toml

64 lines
1.3 KiB
TOML

[tool.poetry]
name = "luthor"
version = "1.1.0"
description = "Legal case management"
authors = ["tanshu <git@tanshu.com>"]
[tool.poetry.dependencies]
python = "^3.9"
uvicorn = {extras = ["standard"], version = "^0.17.6"}
fastapi = "^0.75.1"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
psycopg2-binary = "^2.9.3"
SQLAlchemy = "^1.4.34"
python-multipart = "^0.0.5"
PyJWT = "^2.3.0"
alembic = "^1.7.7"
itsdangerous = "^2.1.2"
python-dotenv = "^0.19.2"
pydantic = {extras = ["dotenv"], version = "^1.9.0"}
starlette = "^0.17.1"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
black = "^22.3.0"
isort = {extras = ["toml"], version = "^5.10.1"}
pre-commit = "^2.17.0"
mypy = "^0.942"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
use_parentheses = true
src_paths = ["poetry", "tests"]
skip_glob = ["*/setup.py"]
filter_files = true
known_first_party = "poetry"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
'''