Files
term-diagram/pyproject.toml
7000pctAUTO 789580715f
Some checks failed
CI / build (push) Has been cancelled
CI / test (push) Has been cancelled
Initial upload: TermDiagram v0.1.0
2026-01-29 22:27:55 +00:00

55 lines
1.2 KiB
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "termdiagram"
version = "0.1.0"
description = "A CLI tool for generating architecture diagrams from codebases"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "TermDiagram Contributors"}
]
keywords = ["cli", "diagram", "architecture", "visualization", "terminal"]
classifiers = [
"Development Status :: 3 - Alpha",
"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",
]
dependencies = [
"click>=8.0",
"rich>=13.0",
"tree-sitter-languages>=1.0",
"gitpython>=3.0",
"rapidfuzz>=3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.1.0",
"mypy>=1.7.0",
"pre-commit>=3.0",
]
[project.scripts]
termdiagram = "termdiagram.cli:main"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "W"]
ignore = []
[tool.mypy]
python_version = "3.10"
strict = true