-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·50 lines (40 loc) · 1.08 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
43
44
45
46
47
48
49
50
#!/usr/bin/env python
IS_CATKIN = False
try:
from catkin_pkg.python_setup import generate_distutils_setup
from setuptools import setup, find_packages
IS_CATKIN = True
except ImportError:
from setuptools import setup, find_packages
pass
VERSION = '2.2.0'
setup_args = dict(
name='hyperion',
packages=find_packages(),
entry_points={
'console_scripts': [
'hyperion=hyperion:main',
],
},
package_data={
# Include any files found in the 'scripts' subdirectory
'': ['bin/*', 'data/*'],
},
version=VERSION,
install_requires=['libtmux',
'pyyaml',
'psutil',
'enum34;python_version<"3.4"'],
description='The Hyperion Launch Engine',
author='David Leins',
author_email='dleins@techfak.uni-bielefeld.de',
url='https://github.com/DavidPL1/Hyperion.git',
keywords=['libtmux'],
classifiers=[],
include_package_data=True
)
if IS_CATKIN:
setup_args = generate_distutils_setup(
**setup_args
)
setup(**setup_args)