- 添加商机管理模块到集成CRM应用 - 更新构建脚本以包含商机管理模块 - 生成完整的数据库模式文件 integrated_crm_app_schema.sql - 更新模块初始化逻辑
38 lines
1.2 KiB
TOML
38 lines
1.2 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "integrated-crm-app"
|
|
version = "1.0.0"
|
|
description = "Complete integrated CRM application combining customer management, contract management, opportunity management, financial management, workflow approval, unified dashboard, appbase foundation, and RBAC security modules"
|
|
authors = [{name = "Hermes Agent", email = "hermes@ai"}]
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
]
|
|
dependencies = [
|
|
"appbase",
|
|
"rbac",
|
|
"customer_management",
|
|
"opportunity_management",
|
|
"contract_management",
|
|
"accounting",
|
|
"workflow_approval",
|
|
"unified_dashboard"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/hermes-ai/integrated-crm-app"
|
|
Repository = "https://github.com/hermes-ai/integrated-crm-app"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["integrated_crm_app*"] |