-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.12 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.12 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
from setuptools import setup, find_packages
setup(
name="ids-ips-tool",
version="1.0.1",
description="Modular IDS/IPS Tool with Real-time Dashboard",
author="Bangkah",
author_email="mdhyaulatha@gmail.com",
url="https://github.com/Bangkah/IDS-IPS-Tool",
packages=(
find_packages(where="src") +
find_packages(where="dashboard", include=["dashboard", "dashboard.*"]) +
find_packages(where="firewall", include=["firewall", "firewall.*"])
),
package_dir={"": "src", "dashboard": "dashboard", "firewall": "firewall"},
install_requires=[
"scapy",
"watchdog",
"notify2",
"fastapi",
"uvicorn",
"jinja2",
],
entry_points={
"console_scripts": [
"ids=src.ids_main:main",
"ips=src.ips_main:main",
"netids=src.netids_main:main",
"firewall=firewall.firewall_main:main"
]
},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
license="MIT",
python_requires=">=3.7",
)