contract_management/pyproject.toml
2026-04-15 15:03:57 +08:00

27 lines
774 B
TOML

[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "contract_management"
version = "1.0.0"
description = "Enterprise contract management module with AI integration"
authors = [{name = "Hermes Agent", email = "hermes@example.com"}]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"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",
]
[project.optional-dependencies]
dev = ["pytest", "black", "flake8"]