23 lines
621 B
TOML
23 lines
621 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "verify-cli"
|
|
version = "0.1.0"
|
|
description = "COBOL->Java/Spark Migration Verification Platform"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"httpx>=0.27",
|
|
"pyyaml>=6.0",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["japanese_data", "orchestrator", "orchestrator_db", "main"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["cobol_testgen*", "runners*", "agents*", "comparator*",
|
|
"config*", "report*", "storage*", "hina*", "tools*", "web*",
|
|
"data*", "jcl*", "quality*", "parametrized*"]
|