-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
61 lines (55 loc) · 1.42 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "CleanDiffuser"
dynamic = ["version"]
description = "CleanDiffuser: An Easy-to-use Modularized Library for Diffusion Models in Decision Making"
authors = [{ name = "CleanDiffuserTeam" }]
readme = "README.md"
requires-python = ">= 3.8"
keywords = ["reinforcement learning", "pytorch", "diffusion models"]
dependencies = [
"numpy<1.23.0",
"einops",
"zarr>=2.16.1",
"av>=12.2.0",
"dill>=0.3.8",
"mujoco_py>=2.0",
"gym>=0.13,<0.24",
"dm_control>=1.0.3",
"cython==3.0.0a10",
"numba<0.60.0",
"matplotlib<=3.7.5",
"six",
"hydra-core",
"zarr<2.17",
"wandb",
"dill",
"av",
"pygame",
"pymunk",
"shapely<2.0.0",
"scikit-image<0.23.0",
"opencv-python",
"imagecodecs",
"torch>1.0.0,<2.3.0",
"torchvision",]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
Homepage = "https://cleandiffuserteam.github.io/CleanDiffuserDocs/"
Repository = "https://github.com/CleanDiffuserTeam/CleanDiffuser"
[build-system]
requires = ["setuptools>=61.0.0", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[tool.rye]
managed = true
dev-dependencies = [
"setuptools>=69.5.1",
"setuptools_scm>=8.1.0",
"wheel>=0.43.0",
]
[tool.setuptools_scm]
write_to = "cleandiffuser/_version.py"
version_scheme = "post-release"
local_scheme = "dirty-tag"
[tool.setuptools.packages.find]
include = ["cleandiffuser"]