15 lines
386 B
TOML
15 lines
386 B
TOML
[build-system]
|
||
requires = ["setuptools>=45", "wheel"]
|
||
build-backend = "setuptools.build_meta"
|
||
|
||
[project]
|
||
name = "script_engine"
|
||
version = "1.0.0"
|
||
description = "脚本引擎模块(W-06):脚本 CRUD + execute_script/validate_script"
|
||
requires-python = ">=3.8"
|
||
dependencies = ["sqlor", "bricks_for_python"]
|
||
|
||
[tool.setuptools.packages.find]
|
||
where = ["."]
|
||
include = ["script_engine*"]
|