-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (39 loc) · 1.3 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
34
35
36
37
38
39
40
41
42
#! /usr/bin/env python
from platform import system
from setuptools import setup, find_packages
requirements = []
sys_os = system().lower()
if sys_os == 'linux':
requirements.append('pyelftools')
setup(name='rpathology',
version='0.0.7',
license='MIT',
author='John Wiggins',
author_email='[email protected]',
description='A library for dealing with executable RPATHs',
long_description='',
url='https://github.com/jwiggins/rpathology',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
],
packages=find_packages(),
package_data={},
entry_points={
'console_scripts': [
'rpath-fixer = rpathology.fixer:main',
'rpath-missing = rpathology.list:main',
'rpath-show = rpathology.show:main',
],
},
requires=requirements,
)