78 lines
1.5 KiB
TOML
78 lines
1.5 KiB
TOML
[tool.poetry]
|
|
name = "gru"
|
|
version = "0.0.1"
|
|
description = "Sensor manager."
|
|
authors = ["tanshu <git@tanshu.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
uvicorn = {extras = ["standard"], version = "^0.22.0"}
|
|
fastapi = "^0.99.1"
|
|
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
|
|
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
|
|
python-multipart = "^0.0.6"
|
|
itsdangerous = "^2.1.2"
|
|
python-dotenv = "^1.0.0"
|
|
openpyxl = "^3.1.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
flake8 = "^6.0.0"
|
|
black = "^23.3.0"
|
|
ruff = "^0.0.277"
|
|
pre-commit = "^3.3.3"
|
|
mypy = "^1.4.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
[tool.mypy]
|
|
# --strict
|
|
disallow_any_generics = true
|
|
disallow_subclassing_any = true
|
|
disallow_untyped_calls = true
|
|
disallow_untyped_defs = true
|
|
disallow_incomplete_defs = true
|
|
check_untyped_defs = true
|
|
disallow_untyped_decorators = true
|
|
no_implicit_optional = true
|
|
warn_redundant_casts = true
|
|
warn_unused_ignores = true
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
strict_equality = true
|
|
plugins = ["sqlalchemy.ext.mypy.plugin"]
|
|
# --strict end
|
|
|
|
[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
|
|
)/
|
|
'''
|