-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.24 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.24 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
36
37
38
from setuptools import find_packages
from setuptools import setup
package_name = 'camera_info_manager_py'
setup(
name=package_name,
version='7.0.0',
packages=find_packages(exclude=['test']),
data_files=[
# Install marker file in the package index
('share/ament_index/resource_index/packages', ['resource/' + package_name]),
# Include our package.xml file
('share/' + package_name, ['package.xml']),
],
install_requires=['setuptools'],
zip_safe=True,
author="Jack O'Quin",
author_email='jack.oquin@gmail.com',
maintainer='Jose Mastrangelo',
maintainer_email='jmastrangelo@clearpathrobotics.com',
keywords=['ROS'],
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='Python interface for camera calibration information.',
long_description='Python interface for camera calibration information. \n\n'
'This ROS package provides a CameraInfo interface for Python camera\n'
'drivers similar to the C++ camera_info_manager package.',
license='BSD',
extras_require={
'test': [
'pytest'
]
},
)