forked from AlphaKnights/RomiRobotPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 677 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 677 Bytes
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
32
33
34
35
#
# Use this configuration file to control what RobotPy packages are installed
# on your RoboRIO
#
[tool.robotpy]
# Version of robotpy this project depends on
robotpy_version = "2024.3.2.2"
# Which extra RobotPy components should be installed
# -> equivalent to `pip install robotpy[extra1, ...]
robotpy_extras = [
# "all",
# "apriltag",
# "commands2",
# "cscore",
# "navx",
# "pathplannerlib",
"phoenix5",
# "phoenix6",
# "photonvision",
# "playingwithfusion",
# "rev",
"romi",
# "sim",
# "xrp",
]
# Other pip packages to install
requires = [
"pylint>=3.2.6",
"mypy>=1.11.0",
"robotpy-ctre>=2024.1.3"
]