-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.42 KB
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ros2-robot-interface"
version = "0.3.1"
description = "Standalone ROS 2 robot interface for communicating with robots through topics"
authors = [
{name = "Huang Zhenbiao", email = "biao876990970@hotmail.com"}
]
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Robotics",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = ["robotics", "ros2", "robot", "interface"]
dependencies = [
"rclpy",
"sensor-msgs",
"geometry-msgs",
"std-msgs",
"nav-msgs",
"numpy",
"pyyaml",
]
[project.urls]
Homepage = "https://github.com/huggingface/lerobot"
Repository = "https://github.com/huggingface/lerobot"
Documentation = "https://huggingface.co/docs/lerobot"
[tool.setuptools.packages.find]
where = ["."]
include = ["ros2_robot_interface*"]
[tool.setuptools.package-data]
ros2_robot_interface = ["py.typed"]