unwind/pyproject.toml
2025-05-15 21:58:37 +02:00

54 lines
1.2 KiB
TOML

[project]
name = "unwind"
version = "0"
description = ""
authors = [{ name = "ducklet", email = "ducklet@noreply.code.dumpr.org" }]
requires-python = ">=3.12"
license = "blessing"
dependencies = [
"beautifulsoup4>=4.9.3,<5",
"html5lib~=1.1",
"starlette>=0.38.0,<0.39",
"ulid-py>=1.1.0,<2",
"uvicorn>=0.30.1,<0.31",
"httpx>=0.27.0,<0.28",
"sqlalchemy[aiosqlite]~=2.0",
"alembic>=1.13.1,<2",
]
[dependency-groups]
dev = [
"pytest",
"pyright",
"pytest-asyncio",
"pytest-cov",
"ruff",
"honcho",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
pythonVersion = "3.12"
[tool.ruff.lint]
select = [
# See https://docs.astral.sh/ruff/rules/ for a list of all rules.
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"DTZ", # flake8-datetimez
"E", # pycodestyle Error
"F", # Pyflakes unused-import
"I", # isort
"RUF", # Ruff-specific rules
"S", # flake8-bandit
"T20", # flake8-print
"W", # pycodestyle Warning
]
ignore = [
"B008", # flake8-bugbear function-call-in-default-argument
"E501", # pycodestyle line-too-long
"S101", # flake8-bandit assert
]