-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 1.18 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
from setuptools import setup
import os
package_name = 'ur_coppeliasim'
share_dir = os.path.join("share", package_name)
setup(
name=package_name,
version='0.0.1',
packages=[package_name],
install_requires=['setuptools'],
zip_safe=True,
author='Davide',
author_email='[email protected]',
maintainer='[email protected]',
maintainer_email='[email protected]',
keywords=['ROS 2', 'example', 'package'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
description='A short description of your package',
long_description_content_type='text/markdown',
license='Apache License, Version 2.0',
data_files=[
("share/ament_index/resource_index/packages", ["resource/" + package_name]),
(share_dir, ["package.xml"]),
#(os.path.join(share_dir, "launch"), ["launch/endpoint.launch.py"]),
],
)