-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
31 lines (28 loc) · 843 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
from setuptools import setup, find_packages
package_name = 'robot_config'
setup(
name=package_name,
version='0.0.0',
packages=[package_name],
py_modules=[],
package_dir={'': 'scripts'}
install_requires=['setuptools'],
zip_safe=True,
author='Arshad Mehmood',
author_email='[email protected]',
maintainer='Arshad Mehmood',
maintainer_email='[email protected]',
keywords=['ROS2'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='Examples of minimal subscribers using rclpy.',
license='Apache License, Version 2.0',
entry_points={
'console_scripts': [
],
},
)