-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.11 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
42
43
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "prodapt"
version = "0.0.1"
dependencies = [
"gdown~=5.1.0",
"opencv-python~=4.9.0.80",
"torch==2.2.1+cu118",
"diffusers~=0.18.2",
"scikit-image~=0.19.3",
"scikit-video~=1.1.11",
"zarr~=2.12.0",
"pygame~=2.1.3",
"pymunk~=6.2.1",
"gymnasium~=0.29.1",
"shapely~=1.8.5",
"hydra-core~=1.3.2",
"ipython~=8.11.0",
"pandas~=2.0.1",
"pyzmq~=26.1.0",
"zmq~=0.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/prodapt"]
requires-python = "~=3.8"
authors = [
{name = "Bryson Jones", email = "[email protected]"},
{name = "Federico Pizarro Bejarano", email = "[email protected]"}
]
maintainers = [
{name = "Federico Pizarro Bejarano", email = "[email protected]"}
]
description = "A package for proprioceptive adaptation using diffusion for robotics manipulation"
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["robotics", "manipulation", "adaptation", "proprioception", "diffusion"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]