-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.29 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
[build-system]
requires = [
"robotpy-build~=2025.0.0",
"wpilib<2026,>=2025.2.1",
]
[tool.robotpy-build]
base_package = "navx"
[tool.robotpy-build.metadata]
name = "robotpy-navx"
description = "Python wrapper for KauaiLabs NavX sensor"
author = "RobotPy Development Team"
author_email = "[email protected]"
url = "https://github.com/robotpy/robotpy-navx"
license = "BSD-3-Clause"
install_requires = [
"wpilib<2026,>=2025.2.1",
]
[tool.robotpy-build.static_libs."studica_driver".maven_lib_download]
artifact_id = "Studica-driver"
group_id = "com.studica.frc"
repo_url = "https://dev.studica.com/maven/release/2025"
version = "2025.0.1"
libs = ["StudicaDriver"]
[tool.robotpy-build.static_libs."studica_lib".maven_lib_download]
artifact_id = "Studica-cpp"
group_id = "com.studica.frc"
repo_url = "https://dev.studica.com/maven/release/2025"
version = "2025.0.1"
libs = ["Studica"]
[tool.robotpy-build.wrappers."navx"]
name = "navx"
depends = [
"wpilib_core",
"wpimath_cpp",
"wpimath_geometry",
"wpiHal",
"wpilibc",
"wpilib_core",
"wpimath_cpp",
"wpimath_geometry",
"wpiHal",
"ntcore",
"wpiutil",
"studica_driver",
"studica_lib",
]
sources = [
"navx/src/rpy/navx.cpp"
]
generate = [
{ AHRS = "studica/AHRS.h" },
]
generation_data = "gen"