-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (48 loc) · 1.74 KB
/
setup.py
File metadata and controls
52 lines (48 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages
import os
# Read requirements
with open('requirements.txt') as f:
requirements = f.read().splitlines()
# Read README for long description
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name="network-sentinel",
version="2.1.1",
author="D3F417",
author_email="info@d3f417.info",
description="Advanced Network Security Monitoring Tool with ML capabilities",
long_description="""
Network Sentinel is a comprehensive network security monitoring solution that
combines traditional packet analysis with machine learning for advanced threat
detection. Features include real-time monitoring, anomaly detection, port scan
detection, and secure data handling.
Key capabilities:
- ML-based threat detection
- Real-time packet analysis
- Advanced scan detection
- Performance monitoring
- Secure data storage
""",
long_description_content_type="text/markdown",
url="https://github.com/Sir-D3F417/network-sentinel",
packages=find_packages(),
install_requires=requirements,
entry_points={
'console_scripts': [
'network-sentinel=network_sentinel.cli:cli',
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Topic :: Security",
"Topic :: System :: Networking :: Monitoring",
],
python_requires=">=3.8",
)