-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (33 loc) · 953 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "myur"
version = "0.1.0"
description = "ROS2 Python package for Universal Robots"
readme = "README.md" # Assuming you have a README file
requires-python = ">=3.0"
authors = [
{ name = "Tufts University CEEO", email = "[email protected]" }
]
urls = { "Homepage" = "https://github.com/tuftsceeo/Universal-Robots-ROS2-CEEO" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"rclpy",
"setuptools",
"scipy",
"numpy",
"plotly"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["myur*", "myur.ik_solver*"]
# Should add an entry point here for launch !
[project.scripts]
launch_gripper = "myur.Gripper_Node:main"
launch_ur = "myur.launch_ur:main"
create_mqtt_forwarder = "myur.mqtt_forwarder:main"