2024-05-10 00:13:01 +02:00
|
|
|
[project]
|
2024-05-11 19:00:27 +02:00
|
|
|
name = "unwind"
|
2023-11-29 18:01:01 +01:00
|
|
|
version = "0"
|
2021-06-15 19:09:21 +02:00
|
|
|
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",
|
|
|
|
|
]
|
2021-06-15 19:09:21 +02:00
|
|
|
|
|
|
|
|
[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]
|
2023-11-26 17:00:31 +01:00
|
|
|
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
|
2024-05-11 17:15:21 +02:00
|
|
|
"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
|
2024-05-11 17:15:21 +02:00
|
|
|
"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
|
|
|
|
|
]
|