Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
setup.py
Go to the documentation of this file.
1
import
os
2
from
glob
import
glob
3
from
setuptools
import
find_packages, setup
4
5
package_name =
"evaluator"
6
7
setup
(
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
)
setup
Definition
setup.py:1
src
evaluator
setup.py
Generated by
1.9.8