integrated_crm_app/pyproject.toml
yumoqing b6ff13734c feat(crm): 集成商机管理模块并更新构建脚本
- 添加商机管理模块到集成CRM应用
- 更新构建脚本以包含商机管理模块
- 生成完整的数据库模式文件 integrated_crm_app_schema.sql
- 更新模块初始化逻辑
2026-04-16 14:32:41 +08:00

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*"]