-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (30 loc) · 1.03 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
from setuptools import find_packages
from setuptools import setup
package_name = 'rpyutils'
setup(
name=package_name,
version='0.6.1',
packages=find_packages(exclude=['test']),
data_files=[
('share/' + package_name, ['package.xml']),
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
],
maintainer='Dharini Dutia',
maintainer_email='[email protected]',
url='https://github.com/ros2/rpyutils',
download_url='https://github.com/ros2/rpyutils/releases',
keywords=[],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
],
description='Python utilities for the ROS 2 code base.',
long_description=(
'This package provides types and functions for common operations '
'throughout the ROS 2 code base.'),
license='Apache License, Version 2.0',
tests_require=['pytest'],
)