-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (49 loc) · 1.75 KB
/
setup.py
File metadata and controls
52 lines (49 loc) · 1.75 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
"""PacketSniffer-AI setup configuration."""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="packetsniffer-ai",
version="1.0.0",
author="Ayi NEDJIMI",
author_email="contact@ayinedjimi-consultants.fr",
description="AI-Powered Network Packet Analyzer with ML Anomaly Detection",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ayinedjimi/PacketSniffer-AI",
project_urls={
"Bug Tracker": "https://github.com/ayinedjimi/PacketSniffer-AI/issues",
"Documentation": "https://github.com/ayinedjimi/PacketSniffer-AI#readme",
"Author": "https://ayinedjimi-consultants.fr",
},
package_dir={"": "src"},
packages=find_packages(where="src"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Security",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.9",
install_requires=[
"scapy>=2.5.0",
"scikit-learn>=1.3.0",
"pandas>=2.0.0",
"numpy>=1.24.0",
],
extras_require={
"dev": ["pytest>=7.0.0", "pytest-cov>=4.0.0"],
},
entry_points={
"console_scripts": [
"packetsniffer-ai=packetsniffer_ai.cli:main",
],
},
)