22 lines
699 B
Python
22 lines
699 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="opportunity_management",
|
|
version="1.0.0",
|
|
description="Opportunity Management Module with Full Lifecycle and Analytics",
|
|
author="Hermes AI Agent",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"appPublic>=1.0.0",
|
|
"sqlor-database-module>=1.0.0"
|
|
],
|
|
python_requires=">=3.8",
|
|
classifiers=[
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
],
|
|
) |