-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 740 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 740 Bytes
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
from setuptools import find_packages, setup
import os
try:
import pypandoc
README = pypandoc.convert(os.path.join(os.path.dirname(__file__), 'README.md'), 'rst')
except (ImportError, OSError) as e:
print("Can't convert readme: {}".format(e))
README = ""
setup(
name='py_elf_structs',
version='1.4.2',
packages=find_packages(),
include_package_data=True,
install_requires=['cstruct==1.8', 'pyelftools'],
license='MIT License',
description='Python package to extract struct and type information from dwarf and build python cstructs',
long_description=README,
url='https://github.com/jonatanSh/py-elf-structs',
author='Jonathan Shimon',
author_email='jonatanshimon@gmail.com',
)