forked from ShoumikSaha/DRSM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.01 KB
/
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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="secml_malware",
version="0.2.7",
author="zangobot",
author_email="[email protected]",
packages=find_packages(),
install_requires=[
'lief',
'python-magic',
'matplotlib',
'numpy',
'seaborn',
'secml',
'lightgbm',
'deap',
'torch',
'torchvision',
'ember'
],
url="https://github.com/pralab/secml_malware",
license="GPL 3.0",
short_description="Robustness evaluation and pentesting tool for machine-learning Windows malware detectors",
long_description=long_description,
long_description_content_type="text/markdown",
package_data={'': ['data/trained/pretrained_malconv.pth', 'data/goodware_samples/file*', 'data/malware_samples/test_malware', 'data/malware_samples/test_folder']},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)