Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
setup.py
Go to the documentation of this file.
1from setuptools import setup
2
3package_name = 'data_infrastructure'
4
6 name=package_name,
7 version='0.0.1',
8 packages=[package_name],
9 data_files=[
10 ('share/ament_index/resource_index/packages', ['resource/' + package_name]),
11 ('share/data_infrastructure/launch', ['launch/data_infrastructure.launch.py']),
12 ('share/' + package_name, ['package.xml']),
13 ],
14 install_requires=['setuptools'],
15 zip_safe=True,
16 maintainer='Joana Louro',
17 maintainer_email='joana.az.louro@gmail.com',
18 description='ROS 2 node to publish and subscribe data.',
19 license='Apache-2.0',
20 tests_require=['pytest'],
21 entry_points={
22 'console_scripts': [
23 'data_infrastructure_node = data_infrastructure.data_infrastructure_node:main',
24 ],
25 },
26)
Definition setup.py:1