51 lines
956 B
TOML
51 lines
956 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",
|
|
]
|
|
|
|
[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"]
|