Files
confdoc/pyproject.toml
7000pctAUTO 1736e6488a
All checks were successful
CI / test (push) Successful in 9m32s
CI / lint (push) Successful in 9m25s
CI / build (push) Successful in 13s
fix: resolve CI/CD workflow issues
2026-01-31 07:14:18 +00:00

60 lines
1.5 KiB
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "confdoc"
version = "0.1.0"
description = "A CLI tool that validates JSON/YAML/TOML configuration files against a schema and auto-generates human-readable documentation."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
authors = [
{name = "ConfDoc Team"}
]
keywords = ["config", "validation", "documentation", "cli", "json", "yaml", "toml"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"typer>=0.9.0",
"pyyaml>=6.0",
"tomlkit>=0.12.0",
"jsonschema>=4.20.0",
"rich>=13.7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"ruff>=0.1.0",
]
[project.scripts]
confdoc = "confdoc.main:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.coverage.run]
source = ["confdoc"]
omit = ["tests/*"]
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "def __repr__", "raise AssertionError", "raise NotImplementedError"]