Files
Orchestrator/shared/tools/monorepo-cli/pyproject.toml
ankn b46de6dc7d
Deploy CV Site (andreknie.de) / deploy (push) Canceled after 0s
ci: migrate GitHub actions to Gitea actions
2026-07-22 15:42:06 +02:00

53 lines
1000 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "monorepo-cli"
version = "0.1.0"
description = "CLI-Tool für Monorepo-Verwaltung: Kontextgrenzen, Wissensspeicher, Repo-Sync, Verschlüsselung und Föderation"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
authors = [
{ name = "Andre Knie" },
]
dependencies = [
"pyyaml>=6.0",
"pypdf>=4.0",
"python-docx>=1.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"hypothesis>=6.100",
"ruff>=0.4.0",
"mypy>=1.10",
"types-PyYAML>=6.0",
]
[project.scripts]
ctx-guard = "monorepo.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/monorepo"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
testpaths = ["tests"]