Files
allwpilib/datalog/src/main/python/native-pyproject.toml
PJ Reiniger 4a2cd3e5d0 [robotpy] Run wpiformat on non-python robotpy files (#8362)
This turns the styleguide on for the non-python robotpy files.

The overwhelming amount of changes were
related to whitespace, followed by some IWYU for standard library
headers.
2026-06-21 19:36:03 -07:00

42 lines
911 B
TOML

[build-system]
build-backend = "hatchling.build"
requires = [
"hatchling",
"hatch-nativelib~=0.2.0",
"hatch-robotpy~=0.2.1",
"robotpy-native-wpiutil==0.0.0",
]
[project]
name = "robotpy-native-datalog"
version = "0.0.0"
description = "WPILib Utility Library"
requires-python = ">=3.11"
license = "BSD-3-Clause"
dependencies = [
"robotpy-native-wpiutil==0.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/native"]
[[tool.hatch.build.hooks.robotpy.maven_lib_download]]
artifact_id = "datalog-cpp"
group_id = "org.wpilib.datalog"
repo_url = ""
version = "0.0.0"
extract_to = "src/native/datalog"
libs = ["datalog"]
[[tool.hatch.build.hooks.nativelib.pcfile]]
pcfile = "src/native/datalog/robotpy-native-datalog.pc"
name = "datalog"
includedir = "src/native/datalog/include"
libdir = "src/native/datalog/lib"
shared_libraries = ["datalog"]
requires = ["robotpy-native-wpiutil"]