-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
executable file
·32 lines (28 loc) · 941 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 python
import os
from glob import glob
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
__author__ = '@c3rb3ru5d3d53c'
__version__ = '1.1.0'
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='mwcfg',
version=__version__,
maintainer=__author__,
description='A Modular Malware Configuration Extraction Tool using MalDuck',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=open('requirements.txt', 'r').read().splitlines(),
scripts=['mwcfg', 'mwcfg-server'],
packages=find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
],
)