-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 801 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 801 Bytes
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
[project]
name = "dynamixel-api"
version = "1.0.3"
authors = [
{ name = "Tim Schneider", email = "tim@robot-learning.de" },
{ name = "Erik Helmut", email = "erik.helmut1@gmail.com" },
]
description = "Python controller for grippers powered by DYNAMIXEL motors."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"dynamixel-sdk",
"pyserial>=3.5"
]
[project.urls]
Homepage = "https://github.com/TimSchneider42/dynamixel-api"
Issues = "https://github.com/TimSchneider42/dynamixel-api/issues"
[project.scripts]
dynamixel-sweep = "dynamixel_api.sweep:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"