-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
33 lines (30 loc) · 1.04 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
#!/usr/bin/env python2
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def long_description():
with open('README.rst') as f:
d=f.read()
return d
setup(name='mLib',
version='1.2.5',
description='Library contains functions commonly used in malware research',
long_description=long_description(),
author='Maciej Kotowicz',
author_email='mak@lokalhost.pl',
url='https://github.com/mak/mlib',
package_dir={'mlib': 'src'},
packages=['mlib', 'mlib.compression', 'mlib.crypto',
'mlib.disasm', 'mlib.winapi', 'mlib.malware',
'mlib.struct'],
package_data={'mlib': ['so/*so']},
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: Public Domain',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2 :: Only',
'Programming Language :: Assembly',
'Programming Language :: C',
'Topic :: Utilities'
])