-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (40 loc) · 958 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
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "conq_python"
version = "0.0.1"
description = "Python library and example scripts for Conq"
readme = "README.md" # Optional
requires-python = ">=3.8"
license = { file = "LICENSE.txt" }
keywords = ["robotics", "spot", "python"]
authors = [
{ name = "Peter Mitrano", email = "[email protected]" }
]
maintainers = [
{ name = "Peter Mitrano", email = "[email protected]" }
]
dependencies = [
"Pillow",
"arm_segmentation",
"bosdyn-choreography-client",
"bosdyn-client",
"bosdyn-mission",
"cvxpy",
"cvxpylayers",
"matplotlib",
"numpy",
"opencv-python",
"pip>=23.1.2",
"plotly",
"pytorch_kinematics",
"pytorch_volumetric",
"rerun-sdk",
"roboflow",
"scikit-learn",
"scipy",
"sortedcontainers",
]
[project.optional-dependencies] # Optional
[tool.setuptools]
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"