-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.03 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.03 KB
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
# PYTHON PACKAGING
# using setuptools : http://pythonhosted.org/setuptools/
from setuptools import setup
with open('pyros_utils/_version.py') as vf:
exec(vf.read())
setup(name='pyros_utils',
version=__version__,
description='This is a ROS package, providing useful ROS addons for pyros.',
url='http://github.com/asmodehn/pyros-utils',
author='AlexV',
author_email='asmodehn@gmail.com',
license='BSD',
packages=[
'pyros_utils',
'pyros_utils.tests',
],
entry_points={
'console_scripts': [
'pyros_utils = pyros_utils.__main__:nosemain'
]
},
# this is better than using package data ( since behavior is a bit different from distutils... )
include_package_data=True, # use MANIFEST.in during install.
install_requires=[
'catkin_pkg', # not needed here since this version should not look for package.xml
'six',
],
test_suite="nose.collector",
tests_require=[
'nose>=1.3.7'
],
zip_safe=False, # TODO testing...
)