91 lines
2.0 KiB
TOML
91 lines
2.0 KiB
TOML
[tool.poetry]
|
|
name = "carrramba-encore-rate"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Adrien SUEUR <me@adrien.run>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
aiohttp = "^3.8.3"
|
|
aiofiles = "^22.1.0"
|
|
fastapi = "^0.103.0"
|
|
uvicorn = "^0.20.0"
|
|
msgspec = "^0.12.0"
|
|
opentelemetry-instrumentation-fastapi = "^0.38b0"
|
|
sqlalchemy-utils = "^0.41.1"
|
|
opentelemetry-instrumentation-logging = "^0.38b0"
|
|
opentelemetry-sdk = "^1.17.0"
|
|
opentelemetry-api = "^1.17.0"
|
|
opentelemetry-exporter-otlp-proto-http = "^1.17.0"
|
|
opentelemetry-instrumentation-sqlalchemy = "^0.38b0"
|
|
sqlalchemy = "^2.0.12"
|
|
psycopg = "^3.1.9"
|
|
pyyaml = "^6.0"
|
|
fastapi-cache2 = {extras = ["redis"], version = "^0.2.1"}
|
|
pydantic-settings = "^2.0.3"
|
|
ruff = "^0.2.1"
|
|
|
|
[tool.poetry.group.db_updater.dependencies]
|
|
aiofiles = "^22.1.0"
|
|
aiohttp = "^3.8.3"
|
|
fastapi = "^0.103.0"
|
|
msgspec = "^0.12.0"
|
|
opentelemetry-instrumentation-fastapi = "^0.38b0"
|
|
opentelemetry-instrumentation-sqlalchemy = "^0.38b0"
|
|
opentelemetry-sdk = "^1.17.0"
|
|
opentelemetry-api = "^1.17.0"
|
|
psycopg = "^3.1.9"
|
|
pyproj = "^3.5.0"
|
|
pyshp = "^2.3.1"
|
|
python = "^3.11"
|
|
pyyaml = "^6.0"
|
|
sqlalchemy = "^2.0.12"
|
|
sqlalchemy-utils = "^0.41.1"
|
|
tqdm = "^4.65.0"
|
|
pydantic-settings = "^2.0.3"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pylsp-mypy = "^0.6.2"
|
|
python-lsp-black = "^1.2.1"
|
|
wrapt = "^1.14.1"
|
|
dill = "^0.3.6"
|
|
python-lsp-ruff = "^1.0.5"
|
|
python-lsp-server = "^1.7.1"
|
|
icecream = "^2.1.3"
|
|
|
|
|
|
[tool.poetry.group.linters.dependencies]
|
|
autopep8 = "^2.0.1"
|
|
black = "^22.10.0"
|
|
mccabe = "^0.7.0"
|
|
mypy = "^1.0.0"
|
|
pydocstyle = "^6.2.2"
|
|
pyflakes = "^3.0.1"
|
|
rope = "^1.3.0"
|
|
ruff = "^0.2.1"
|
|
types-aiofiles = "^22.1.0.2"
|
|
types-sqlalchemy-utils = "^1.0.1"
|
|
types-pyyaml = "^6.0.12.9"
|
|
types-tqdm = "^4.65.0.1"
|
|
whatthepatch = "^1.0.4"
|
|
yapf = "^0.32.0"
|
|
|
|
[tool.mypy]
|
|
plugins = "sqlalchemy.ext.mypy.plugin"
|
|
exclude = ['docker', 'docs']
|
|
strict = true
|
|
|
|
[tool.black]
|
|
target-version = ['py311']
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
[too.ruff.per-file-ignores]
|
|
"__init__.py" = ["E401"]
|