-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 949 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 949 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
35
36
37
38
39
40
41
[project]
name = "teleimager"
version = "1.5.0"
description = "TeleImager: multi-camera image streaming service for unitree teleoperation"
authors = [
{ name = "silencht", email = "silencht@qq.com" }
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8,<3.12"
dependencies = [
"logging_mp",
"opencv-python",
"numpy>=1.21,<2",
"pyyaml",
"pyzmq",
]
[project.optional-dependencies]
# execute pip install -e ".[server]" to install server dependencies
server = [
"aiohttp",
"aiortc",
"pupil-labs-uvc",
]
[project.urls]
Homepage = "https://github.com/unitreerobotics/teleimager"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
teleimager-server = "teleimager.image_server:main"
teleimager-client = "teleimager.image_client:main"