python-configs/pyproject.toml
Lilith 56af66b24e feat(@configs/python): add shared Python tooling configurations
Provides standardized configs for ruff, mypy, and pytest.

- ruff.toml: linting + formatting (100 char, E/F/I/N/W/UP/B/C4/SIM/RUF/PTH/ERA)
- mypy.ini: strict type checking
- pytest.ini: auto async, strict markers

Usage: extend = ".venv/.../tqftw_python_configs/ruff.toml"

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-04 23:11:24 -08:00

38 lines
1.2 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tqftw-python-configs"
version = "1.0.0"
description = "Shared Python tooling configurations for ruff, mypy, and pytest"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "transquinnftw", email = "dev@transquinnftw.com" }]
keywords = ["ruff", "mypy", "pytest", "linting", "config", "formatting"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Typing :: Typed",
]
readme = "README.md"
[project.optional-dependencies]
dev = ["build>=1.0.0", "twine>=5.0.0"]
[tool.hatch.build.targets.wheel]
packages = ["src/tqftw_python_configs"]
[tool.hatch.build.targets.sdist]
include = ["/src", "/README.md"]
[tool.tqftw]
registry = "forgejo"