-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
44 lines (40 loc) · 1.27 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
38
39
40
41
42
43
44
from setuptools import setup, find_packages
from pathlib import Path
current_dir = Path(__file__).parent.resolve()
with open(str(current_dir / "README.md"), "r") as f:
long_description = f.read()
version = '0.3.2'
setup(
name="secml_malware",
version=version,
author="zangobot",
author_email="[email protected]",
packages=find_packages(),
install_requires=[
'lief',
'python-magic',
'matplotlib',
'numpy',
'seaborn',
'secml',
'lightgbm',
'deap',
'torch',
'torchvision',
'tqdm',
],
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.6",
)