-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 927 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 927 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
31
32
33
34
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "teleop"
version = "0.1.4"
description = "Turns your phone into a robot arm teleoperation device by leveraging the WebXR API"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [{ name = "Spes Robotics", email = "contact@spes.ai" }]
dependencies = [
"fastapi",
"uvicorn[standard]",
"numpy",
"transforms3d",
"pytest",
"requests",
"websocket-client",
]
[project.urls]
Documentation = "https://github.com/SpesRobotics/teleop"
Source = "https://github.com/SpesRobotics/teleop"
Tracker = "https://github.com/SpesRobotics/teleop/issues"
[project.optional-dependencies]
utils = ["pin"]
[tool.setuptools.packages.find]
include = ["teleop*"]
[tool.setuptools.package-data]
teleop = ["cert.pem", "key.pem", "index.html", "assets/*", "utils/lite6.urdf"]