forked from ros-infrastructure/superflore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·50 lines (46 loc) · 1.33 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
import sys
from setuptools import find_packages, setup
if sys.version_info < (3, 0):
sys.exit('Sorry, Python < 3.0 is not supported')
install_requires = [
'xmltodict',
'termcolor',
'setuptools',
'rosinstall_generator',
'rosdistro >= 0.7.4',
'rosdep >= 0.15.2',
'gitpython',
'requests',
'docker',
'pyyaml',
'pygithub',
'catkin_pkg >= 0.4.0',
'bs4',
'rospkg >= 1.1.8',
]
setup(
name='superflore',
version='0.3.0',
packages=find_packages(exclude=['tests', 'tests.*']),
author='Hunter L. Allen',
author_email='hunterlallen@protonmail.com',
url='https://github.com/ros-infrastructure/superflore',
keywords=['ROS'],
install_requires=install_requires,
python_requires='>=3',
classifiers=['Programming Language :: Python',
'License :: OSI Approved :: Apache Software License',
'License :: OSI Approved :: MIT License'
],
description='Super Bloom',
license='Apache 2.0',
test_suite='tests',
entry_points={
'console_scripts': [
'superflore-gen-ebuilds = superflore.generators.ebuild:main',
'superflore-gen-oe-recipes = superflore.generators.bitbake:main',
'superflore-check-ebuilds = superflore.test_integration.gentoo:main',
]
}
)