dataloader/pyproject.toml

70 lines
1.2 KiB
TOML

[tool.poetry]
name = "dataloader"
version = "0.1.0"
description = "Dataloader for something"
authors = ["Your Name <you@example.com>"]
readme = "README.md"
packages = [{include = "dataloader", from = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
uvicorn = "^0.23.2"
fastapi = "^0.121.0"
pydantic = "^2.12.3"
pydantic-settings = "^2.11.0"
asyncpg = "^0.30.0"
sqlalchemy = "^2.0.0"
httpx = "^0.28.0"
aiohttp = "^3.11.0"
aiofiles = "^24.1.0"
zstandard = "^0.23.0"
orjson = "^3.10.0"
pytz = "^2025.1"
tzdata = "^2025.1"
loguru = "^0.7.2"
[tool.poetry.group.dev.dependencies]
[tool.poetry.scripts]
dataloader = "dataloader.__main__:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ["py311"]
skip-string-normalization = false
preview = true
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
known_first_party = ["dataloader"]
src_paths = ["src"]
[tool.ruff]
line-length = 88
target-version = "py311"
fix = true
lint.select = ["E", "F", "W", "I", "N", "B"]
lint.ignore = [
"E501",
]
exclude = [
".git",
"__pycache__",
"build",
"dist",
".venv",
"venv",
]