20 lines
533 B
TOML
20 lines
533 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 editable 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"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["application_landing_zone_agent*"]
|