Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
setup.py
Go to the documentation of this file.
1import os
2from glob import glob
3from setuptools import find_packages, setup
4
5package_name = "evaluator"
6
8 name=package_name,
9 version="0.0.0",
10 packages=find_packages(exclude=["test"]),
11 data_files=[
12 ("share/ament_index/resource_index/packages", ["resource/" + package_name]),
13 ("share/" + package_name, ["package.xml"]),
14 (
15 os.path.join("share", package_name, "launch"),
16 glob(os.path.join("launch", "*launch.[pxy][yma]*")),
17 ),
18 ],
19 install_requires=["setuptools"],
20 zip_safe=True,
21 maintainer="Davide Teixeira",
22 maintainer_email="davidpcu@hotmail.com",
23 description="TODO: Package description",
24 license="TODO: License declaration",
25 tests_require=["pytest"],
26 entry_points={
27 "console_scripts": [
28 "evaluator = evaluator.evaluator:main",
29 ],
30 },
31)
Definition setup.py:1