-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (36 loc) · 1.14 KB
/
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
38
39
40
41
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "abb_motion_program_exec"
version = "0.7.4"
authors = [
{name ="John Wason", email = "[email protected]"}
]
description = "Python package to execute motion commands on ABB robots and log results"
license = {text = "Apache-2.0"}
requires-python = ">=3.6"
dependencies = [
"requests",
"numpy",
"abb-robot-client[aio]",
"dataclasses; python_version<'3.7'"
]
readme = "README.md"
[project.urls]
homepage = "https://github.com/rpiRobotics/abb_motion_program_exec"
documentation = "https://abb-motion-program-exec.readthedocs.io/en/latest/"
repository = "https://github.com/rpiRobotics/abb_motion_program_exec"
[project.scripts]
abb-motion-program-exec-robotraconteur = "abb_motion_program_exec.robotraconteur.abb_motion_program_exec_robotraconteur:main"
[project.optional-dependencies]
test = [
"pytest",
]
robotraconteur = [
"robotraconteur",
"robotraconteurcompanion",
"drekar-launch-process",
"robotraconteur-abstract-robot"
]
[tool.setuptools.package-data]
"abb_motion_program_exec.robotraconteur" = ["*.robdef"]