32 lines
846 B
TOML
32 lines
846 B
TOML
[build-system]
|
||
requires = ["setuptools>=61.0"]
|
||
build-backend = "setuptools.build_meta"
|
||
|
||
[project]
|
||
name = "pbl_blueprint"
|
||
version = "1.0.0"
|
||
description = "PBL 蓝图聚合根与子对象、版本、模板模块(M1a)——蓝图 CRUD/树/fork、7 类子对象泛化契约、版本 change_delta、模板实例化与离线兜底;tenant_id 强制打头"
|
||
readme = "README.md"
|
||
requires-python = ">=3.8"
|
||
license = { text = "Proprietary" }
|
||
authors = [{ name = "sdlc agent.develop" }]
|
||
keywords = ["pbl", "blueprint", "sage", "module"]
|
||
dependencies = []
|
||
|
||
[project.optional-dependencies]
|
||
dev = ["pytest>=7.0"]
|
||
|
||
[tool.setuptools]
|
||
packages = ["pbl_blueprint"]
|
||
include-package-data = true
|
||
|
||
[tool.setuptools.package-data]
|
||
pbl_blueprint = [
|
||
"json/*.json",
|
||
"models/*.json",
|
||
"sql/*.sql",
|
||
"wwwroot/*.ui",
|
||
"init/*.json",
|
||
"skill/*.md",
|
||
]
|