-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
setup.py
38 lines (37 loc) · 988 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
33
34
35
36
37
38
from setuptools import find_packages, setup
setup(
name="Dshell",
version="3.2.3",
author="USArmyResearchLab",
description="An extensible network forensic analysis framework",
url="https://github.com/USArmyResearchLab/Dshell",
python_requires='>=3.8',
packages=find_packages(),
package_data={
"dshell": ["data/dshellrc", "data/GeoIP/readme.txt"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Topic :: Security",
],
install_requires=[
"geoip2",
"pcapy-ng",
"pypacker",
"pyopenssl",
"elasticsearch",
"tabulate",
],
entry_points={
"console_scripts": [
"dshell-decode = dshell.decode:main_command_line",
],
"dshell_plugins": [],
},
scripts=[
"scripts/dshell",
],
)