[project]
name = "rural-dict"
description = "Privacy-respecting, NoJS-supporting Urban Dictionary frontend."
license = "AGPL-3.0-or-later"
readme = { file = "README.org", content-type = "text/plain" }
requires-python = ">=3.12"
authors = [
    { name = "Zubarev Grigoriy", email = "thirtysix@thirtysix.pw" },
    { name = "vlnst", email = "vlnst@bloat.cat" },
    { name = "Skylar Widulski", email = "cobra@vern.cc" },
    { name = "zortazert", email = "zortazert@matthewevan.xyz" },
]
dependencies = [
    "requests~=2.32.3",
    "flask~=3.0.3",
    "waitress~=3.0.0",
    "selectolax>=0.3.21",
]
dynamic = ["version"]

[project.urls]
"Source Code" = "https://git.vern.cc/cobra/rural-dict"
"Issue Tracker" = "https://git.vern.cc/cobra/rural-dict/issues"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.rye]
managed = true
universal = true
dev-dependencies = []

[tool.hatch.version]
path = "src/rural_dict/__init__.py"

[tool.hatch.metadata]
allow-direct-references = true

[tool.hatch.build.targets.wheel]
packages = ["src/rural_dict"]

[tool.hatch.build.targets.sdist]
exclude = ["*.xcf"]

[tool.ruff]
target-version = "py312"
line-length = 99
exclude = [
    ".git",
    ".venv",
    ".idea",
    ".tests",
    "build",
    "dist",
]

[tool.ruff.lint]
select = [
    "E", # pycodestyle errors
    "W", # pycodestyle warnings
    "F", # pyflakes
    "I", # isort
    "N", # pep8-naming
    "S", # flake8-bandit
    "B", # flake8-bugbear
    "G", # flake8-logging-format
    "C4", # flake8-comprehensions
    "UP", # pyupgrade
    "PLC", # pylint conventions
    "PLE", # pylint errors
    "SIM", # flake8-simplify
    "RET", # flake8-return
    "YTT", # flake8-2020
    "DTZ", # flake8-datetimez
    "RUF", # ruff-specific rules
    "TCH", # flake8-type-checking
    "PTH", # flake8-use-pathlib
    "ASYNC", # flake8-async
]