-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (73 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
96 lines (73 loc) · 1.99 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
build-backend = "hatchling.build"
requires = [
"hatchling",
"hatch-vcs",
"semiwrap~=0.3.0",
"hatch-meson~=0.1.0",
"hatch-robotpy~=0.2.1",
"wpilib~=2026.2.1",
]
[project]
name = "robotpy-navx"
dynamic = ["version"]
description = "Python wrapper for Studica NavX sensor"
license = "BSD-3-Clause"
dependencies = [
"wpilib>=2026.2.1,<2027",
]
[[project.authors]]
name = "RobotPy Development Team"
email = "robotpy@googlegroups.com"
[project.urls]
"Source code" = "https://github.com/robotpy/robotpy-navx"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "navx/version.py"
[tool.hatch.build.targets.wheel]
packages = ["navx"]
[[tool.hatch.build.hooks.robotpy.maven_lib_download]]
artifact_id = "Studica-cpp"
group_id = "com.studica.frc"
repo_url = "https://dev.studica.com/maven/release/2026"
version = "2026.0.0"
staticlibs = ["Studica"]
extract_to = "lib"
[[tool.hatch.build.hooks.robotpy.maven_lib_download]]
artifact_id = "Studica-driver"
group_id = "com.studica.frc"
repo_url = "https://dev.studica.com/maven/release/2026"
version = "2026.0.0"
staticlibs = ["StudicaDriver"]
extract_to = "lib"
[[tool.hatch.build.hooks.robotpy.maven_lib_download]]
artifact_id = "StudicaLib-cpp"
group_id = "com.studica.frc"
repo_url = "https://dev.studica.com/maven/release/2026"
version = "2026.0.2"
staticlibs = ["StudicaLib"]
extract_to = "lib"
[[tool.hatch.build.hooks.robotpy.maven_lib_download]]
artifact_id = "StudicaLib-driver"
group_id = "com.studica.frc"
repo_url = "https://dev.studica.com/maven/release/2026"
version = "2026.0.2"
staticlibs = ["StudicaLibDriver"]
extract_to = "lib"
[tool.hatch.build.hooks.semiwrap]
[tool.hatch.build.hooks.meson]
[tool.semiwrap]
update_init = ["navx"]
scan_headers_ignore = ["*"]
[tool.semiwrap.extension_modules."navx._navx"]
name = "navx"
depends = [
"wpilib",
]
includes = [
"lib/include"
]
[tool.semiwrap.extension_modules."navx._navx".headers]
AHRS = "studica/AHRS.h"
NavX = "studica/Navx.h"