15 lines
407 B
TOML
15 lines
407 B
TOML
[build-system]
|
||
requires = ["setuptools>=45", "wheel"]
|
||
build-backend = "setuptools.build_meta"
|
||
|
||
[project]
|
||
name = "entity"
|
||
version = "1.0.0"
|
||
description = "实体管理模块(W-03)——实体表 CRUD、列表查询、实体文件导入(entity_import 记录)"
|
||
requires-python = ">=3.8"
|
||
dependencies = ["sqlor", "bricks_for_python"]
|
||
|
||
[tool.setuptools.packages.find]
|
||
where = ["."]
|
||
include = ["entity*"]
|