-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (27 loc) · 906 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
#!/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='REglue',
version='0.0.1',
description='Library providing common interface for RE frameworks',
long_description='Library providing common interface for RE frameworks',
author='Maciej Kotowicz',
author_email='[email protected]',
url='https://github.com/mak/reglue',
package_dir={'reglue': 'src'},
packages=['reglue', 'reglue.backend','reglue.common',
'reglue.backend.ida',
'reglue.backend.r2',
'reglue.backend.binja',
'reglue.backend.meng',
'reglue.backend.nucleus',
'reglue.backend.smda',
'reglue.backend.ghidra',
],
)