-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (60 loc) · 1.38 KB
/
pyproject.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "TEAM2556-Python"
version = "0.2.0"
description = "FRC Robot Project using Python, PyRobot, and WPILib"
authors = [
{ name="Team2556", email="[email protected]" }
]
dependencies = [
"wpilib", #really need?
"robotpy",
"mypy",
#"robotpy-pathplannerlib"
# could not find "ctre",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.robotpy]
# Version of robotpy this project depends on
robotpy_version = "2025.1.1.1"#"2024.3.2.2"
# Which extra RobotPy components should be installed
# -> equivalent to `pip install robotpy[extra1, ...]
# fomr PyPi: Provides-Extra: apriltag, commands2, cscore, navx, pathplannerlib, phoenix6, rev, romi, sim, xrp, all
robotpy_extras = [
# "all",
"apriltag",
"commands2",
"cscore",
"navx",
"pathplannerlib",
"phoenix6",
# "photonvision",
# "playingwithfusion",
"rev",
# "romi",
"sim",
# "xrp",
#not available:
# "ntcore"
# "phoenix5",
"ctre",
# "opencv",
]
# Other pip packages to install on the roboRIO
requires = [
'numpy',
# 'opencv-python',
#'scipy'
'pynetworktables',
'pyfrc',
# 'robotpy-hal-sim',
#'robotpy-wpilib',
#'robotpy-wpiutil',
'robotpy-ctre',
# 'robotpy-opencv'
#'robotpy-rev',
# 'xarray',
]