mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-29 02:21:44 +00:00
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.
42 lines
911 B
TOML
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"]
|