-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (23 loc) · 1014 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
33
34
35
36
37
38
39
40
41
42
43
44
45
import setuptools;
def readme():
with open('readme.rst') as f:
return f.read()
setuptools.setup(name="macho_analysis",
version="0.011",
description="some utils to help analysis macho files,include util to find which module call the symbol and the dependencies between the modules",
long_description=readme(),
author="chaoran zhang",
keywords='macho analysis symbol module dependencies',
url='https://github.com/eeeyes/macho_analysis.git',
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: MacOS :: MacOS X',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities'
],
author_email="[email protected]",
license='MIT',
packages=['macho_analysis','macho_analysis/utils'],
include_package_data=True,
zip_safe=False);