33 lines
974 B
TOML
33 lines
974 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "unified-dashboard"
|
|
version = "1.0.0"
|
|
description = "Unified dashboard and reporting module for integrated CRM application"
|
|
authors = [{name = "Hermes AI Agent", email = "hermes@ai-agent.com"}]
|
|
license = {text = "MIT"}
|
|
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 = [
|
|
"ahserver>=1.0.0",
|
|
"sqlor-database-module>=1.0.0",
|
|
"bricks-framework>=1.0.0"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=6.0", "black", "flake8"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["unified_dashboard*"] |