forked from CERT-Polska/malduck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 877 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="malduck",
version="4.2.0",
description="Malduck is your ducky companion in malware analysis journeys",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="CERT Polska",
author_email="[email protected]",
packages=["malduck"],
package_data={"malduck": ["py.typed"]},
entry_points={
"console_scripts": [
"malduck = malduck.main:main",
],
},
license="GPLv3",
include_package_data=True,
install_requires=open("requirements.txt").read().splitlines(),
url="https://github.com/CERT-Polska/malduck",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
],
python_requires='>=3.6'
)