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 find_packages, setup
2
3package_name = 'supervisor'
4
6 name=package_name,
7 version='0.0.0',
8 packages=find_packages(exclude=['test']),
9 data_files=[
10 ('share/ament_index/resource_index/packages',
11 ['resource/' + package_name]),
12 ('share/' + package_name, ['package.xml']),
13 ],
14 install_requires=['setuptools'],
15 zip_safe=True,
16 maintainer='fsfeup',
17 maintainer_email='formulastudentfeup@gmail.com',
18 description='TODO: Package description',
19 license='TODO: License declaration',
20 tests_require=['pytest'],
21 entry_points={
22 'console_scripts': [
23 'supervisor = supervisor.main:main'
24 ],
25 },
26)
Definition setup.py:1