-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (56 loc) · 1.52 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
[build-system]
requires = [
"robotpy-build~=2024.0.0",
"pyntcore<2025.0.0,>=2024.1.1",
"robotpy-hal<2025.0.0,>=2024.1.1",
"robotpy-wpimath<2025.0.0,>=2024.1.1",
"robotpy-wpiutil<2025.0.0,>=2024.1.1",
"wpilib<2025.0.0,>=2024.1.1",
]
[tool.robotpy-build]
base_package = "urcl"
[tool.robotpy-build.metadata]
name = "robotpy-urcl"
description = "Python wrapper for FRC Team 6328's URCL library"
author = "RobotPy Development Team"
author_email = "robotpy@googlegroups.com"
url = "https://github.com/robotpy/robotpy-urcl"
license = "MIT"
install_requires = [
"pyntcore<2025.0.0,>=2024.1.1",
"robotpy-hal<2025.0.0,>=2024.1.1",
"robotpy-wpiutil<2025.0.0,>=2024.1.1",
"wpilib<2025.0.0,>=2024.1.1",
]
[tool.robotpy-build.static_libs."urcl_driver".maven_lib_download]
artifact_id = "URCL-driver"
group_id = "org.littletonrobotics.urcl"
repo_url = "https://raw.githubusercontent.com/Mechanical-Advantage/URCL/2024.1.0"
version = "2024.1.0"
libs = [
"URCLDriver",
]
[tool.robotpy-build.wrappers."urcl".maven_lib_download]
artifact_id = "URCL-cpp"
group_id = "org.littletonrobotics.urcl"
repo_url = "https://raw.githubusercontent.com/Mechanical-Advantage/URCL/2024.1.0"
version = "2024.1.0"
use_sources = true
sources = [
"URCL.cpp",
]
[tool.robotpy-build.wrappers."urcl"]
name = "urcl"
depends = [
"urcl_driver",
"wpiHal",
"ntcore",
"wpilibc",
"wpiutil",
]
sources = [
"urcl/wrapper.cpp",
]
generation_data = "gen"
[tool.robotpy-build.wrappers."urcl".autogen_headers]
URCL = "URCL.h"