| from setuptools import setup, find_packages |
|
|
| with open("README.md", "r", encoding="utf-8") as fh: |
| long_description = fh.read() |
|
|
| setup( |
| name="cisco-network-anomaly-detection", |
| version="0.1.0", |
| author="Aravind Kumar", |
| author_email="rahulreddy12365@gmail.com", |
| description="Enterprise-grade ML system for network log anomaly detection", |
| long_description=long_description, |
| long_description_content_type="text/markdown", |
| url="https://github.com/yourusername/cisco-network-anomaly-detection", |
| packages=find_packages(), |
| classifiers=[ |
| "Programming Language :: Python :: 3", |
| "Programming Language :: Python :: 3.8", |
| "Programming Language :: Python :: 3.9", |
| "Programming Language :: Python :: 3.10", |
| "License :: OSI Approved :: MIT License", |
| "Operating System :: OS Independent", |
| "Development Status :: 3 - Alpha", |
| "Intended Audience :: Developers", |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| ], |
| python_requires=">=3.8", |
| install_requires=[ |
| "streamlit>=1.28.0", |
| "pandas>=2.0.0", |
| "numpy>=1.24.0", |
| "scikit-learn>=1.3.0", |
| "plotly>=5.17.0", |
| "scipy>=1.11.0", |
| "matplotlib>=3.7.0", |
| "seaborn>=0.12.0", |
| ], |
| extras_require={ |
| "dev": [ |
| "pytest>=7.0", |
| "pytest-cov>=4.0", |
| "black>=23.0", |
| "flake8>=6.0", |
| "mypy>=1.0", |
| ], |
| "ml": [ |
| "tensorflow>=2.12.0", |
| "torch>=2.0.0", |
| "shap>=0.42.0", |
| ], |
| }, |
| entry_points={ |
| "console_scripts": [ |
| "anomaly-detect=app:main", |
| ], |
| }, |
| ) |
|
|