-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 865 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
from setuptools import setup
setup(
name='mockturtlebot2',
version='0.0.0',
packages=[],
py_modules=[],
install_requires=['setuptools'],
author='Christian Mock',
author_email='[email protected]',
maintainer='Christian Mock',
maintainer_email='[email protected]',
keywords=['ROS2'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='Package containing examples of how to use the rclpy API.',
license='Apache License, Version 2.0',
test_suite='test',
entry_points={
'console_scripts': [
'pymatadriver_py = pymatadriver_py:main',
'pytreesdriver_py = pytreesdriver_py:main',
],
},
)