forked from crigroup/handeye
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
34 lines (32 loc) · 990 Bytes
/
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
from setuptools import find_packages
from setuptools import setup
package_name = 'handeye'
setup(
name=package_name,
version='0.1.1',
packages=find_packages('src', exclude=['test']),
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
],
install_requires=['setuptools'],
zip_safe=True,
author='Francisco Suarez-Ruiz',
author_email='[email protected]',
maintainer='Francisco Suarez-Ruiz',
maintainer_email='[email protected]',
keywords=['ROS'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD 3-Clause License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description=(
'The handeye calibration algorithm package.'
),
license='BSD 3-Clause License',
tests_require=['pytest'],
package_dir={'':'src'},
)