-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 830 Bytes
/
setup.py
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
#!/usr/bin/env python3
try:
from setuptools import setup
except ImportError as error:
raise SystemExit(error)
version = "0.1.0"
author = "Moein Shafi"
author_email = "[email protected]"
entry_points = {
"console_scripts": ["alflowlyzer = ALFlowLyzer.__main__:main"]
}
setup(
name="ALFlowLyzer",
version=version,
author=author,
author_email=author_email,
packages=[
"ALFlowLyzer",
"ALFlowLyzer.features",
"ALFlowLyzer.application_flow_capturer",
"ALFlowLyzer.writers",
],
package_dir={
"ALFlowLyzer": "ALFlowLyzer",
"ALFlowLyzer.features": "ALFlowLyzer/features",
"ALFlowLyzer.writers": "ALFlowLyzer/writers",
},
entry_points=entry_points,
)