20 lines
499 B
TOML
20 lines
499 B
TOML
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "customer_management"
|
|
version = "1.0.0"
|
|
description = "客户管理模块 - 提供客户档案管理、交接管理和公海池功能"
|
|
authors = [{name = "Hermes Agent", email = "hermes@example.com"}]
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"sqlor",
|
|
"bricks_for_python",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["customer_management*"]
|