forked from dechaoqiu/atosl_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (23 loc) · 807 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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
atosl: atos for Linux
"""
from setuptools import setup
from distutils.core import setup, Extension
atosl_module = Extension('atosl', ["converter.c", "macho.c", "atosl.c", "python_wrapper.c"])
# atosl.symbolicate('armv7s', 'test/res/CrashTest3Dwarf.fat', ("0x00006ed7", ))
setup(name='atosl',
# version=__version__,
version='0.0.1',
description='atosl: atos for linux',
long_description=open("README.md").read(),
author='Reno Qiu',
author_email='[email protected]',
keywords='atos for linux, binary addresses to symbols',
license="MIT",
platforms=["Linux, Mac OS X"],
url='https://github.com/renoqiu/atosl_python',
download_url='https://github.com/renoqiu/atosl_python',
ext_modules = [atosl_module],
)