Files
balance/pyproject.toml
ydy0615 ced3669fac refactor(package): rename to dm_imu and restructure directories
Renamed package from dm_imu_pkg to dm_imu across PKG-INFO, egg-info files,
and directories. Updated CMakeLists.txt, __init__.py, and top_level.txt to
reflect new structure. Bumped gradio version from <5.0 to <6.0 in
dependencies. This refactoring improves naming consistency and streamlines
the package layout for better maintainability.
2025-12-10 19:32:28 +08:00

27 lines
621 B
TOML

[build-system]
requires = ["setuptools>=61", "wheel", "pybind11>=2.10", "cmake"]
build-backend = "setuptools.build_meta"
[project]
name = "dm_imu"
version = "0.1.0"
description = "Balance project with pybind11 IMU driver"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [{name = "allenyuan", email = "allenyuan410@gmail.com"}]
dependencies = [
"pybind11>=2.10",
"numpy<2.0",
"pyserial>=3.5",
"gradio<6.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["dm_imu"]