-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 850 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
from setuptools import setup
package_name = 'vector_ros2'
setup(
name=package_name,
version='0.0.0',
packages=[],
py_modules=[],
install_requires=['setuptools'],
author='Chris Chan',
author_email='xxx@xxx.org',
maintainer='xxx xxx',
maintainer_email='xxx@xxx.org',
keywords=['ROS'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='Package for Anki Vector.',
license='Apache License, Version 2.0',
test_suite='test',
entry_points={
'console_scripts': [
'vision = scripts.vision:main',
'movement = scripts.movement:main',
'mopper = scripts.mopper:main'
],
},
)