Files
allwpilib/romiVendordep/src/main/python/native-pyproject.toml
PJ Reiniger e2c9af862e [py] Fix maven coordinates for native downloads (#8474)
This got missed in the reorg, and these values aren't actually used for
anything when building in `allwpilb`, but we might as well fix them here
to make the copybara process easier.
2025-12-13 21:44:31 -08:00

40 lines
937 B
TOML

[build-system]
build-backend = "hatchling.build"
requires = [
"hatchling",
"hatch-nativelib~=0.2.0",
"hatch-robotpy~=0.2.1",
"robotpy-native-wpilib==0.0.0",
]
[project]
name = "robotpy-native-romi"
version = "0.0.0"
description = "WPILib Romi support library"
license = "BSD-3-Clause"
dependencies = [
"robotpy-native-wpilib==0.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/native"]
[[tool.hatch.build.hooks.robotpy.maven_lib_download]]
artifact_id = "romiVendordep-cpp"
group_id = "org.wpilib.romiVendordep"
repo_url = "https://frcmaven.wpi.edu/artifactory/release-2027"
version = "0.0.0"
extract_to = "src/native/romi"
libs = ["romiVendordep"]
[[tool.hatch.build.hooks.nativelib.pcfile]]
pcfile = "src/native/romi/robotpy-native-romi.pc"
name = "romi"
includedir = "src/native/romi/include"
libdir = "src/native/romi/lib"
shared_libraries = ["romiVendordep"]
requires = ["robotpy-native-wpilib"]