unwind/pyproject.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.2 KiB
TOML
Raw Normal View History

2024-05-10 00:13:01 +02:00
[project]
2024-05-11 19:00:27 +02:00
name = "unwind"
version = "0"
description = ""
2025-05-15 21:56:57 +02:00
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",
]
2022-10-23 12:24:51 +02:00
2025-05-15 21:56:57 +02:00
[dependency-groups]
dev = [
"pytest",
"pyright",
"pytest-asyncio",
"pytest-cov",
"ruff",
"honcho",
]
[build-system]
2025-05-15 21:56:57 +02:00
requires = ["hatchling"]
build-backend = "hatchling.build"
2021-11-02 14:25:50 +01:00
[tool.pyright]
pythonVersion = "3.12"
2023-02-03 22:10:11 +01:00
2024-05-10 00:13:01 +02:00
[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
2024-05-10 00:13:01 +02:00
"E", # pycodestyle Error
"F", # Pyflakes unused-import
"I", # isort
"RUF", # Ruff-specific rules
"S", # flake8-bandit
"T20", # flake8-print
2024-05-10 00:13:01 +02:00
"W", # pycodestyle Warning
]
ignore = [
"B008", # flake8-bugbear function-call-in-default-argument
"E501", # pycodestyle line-too-long
"S101", # flake8-bandit assert
]