21 lines
509 B
TOML
21 lines
509 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "application-landing-zone-agent"
|
|
version = "0.1.0"
|
|
description = "Generate TSD documents and draw.io architecture diagrams from application requirements"
|
|
requires-python = ">=3.10"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
application-landing-zone-agent = "application_landing_zone_agent.cli:main"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
addopts = "-q"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|