forked from lucidrains/dreamer4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (81 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (81 loc) · 1.73 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "dreamer4"
version = "0.14.1"
description = "Dreamer4 - PyTorch"
authors = [
{ name = "Phil Wang", email = "lucidrains@gmail.com" }
]
readme = "README.md"
requires-python = ">= 3.10"
license = { file = "LICENSE" }
keywords = [
'artificial intelligence',
'deep learning',
'transformer',
'attention mechanism',
'model-based reinforcement learning',
'world models'
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
]
dependencies = [
"accelerate",
"adam-atan2-pytorch>=0.2.2",
"assoc-scan",
"discrete-continuous-embed-readout>=0.2.4",
"einx>=0.3.0",
"einops>=0.8.1",
"ema-pytorch",
"hl-gauss-pytorch",
"h-net-dynamic-chunking>=0.5.12",
"PoPE_pytorch>=0.2.1",
"torch>=2.4",
"torch-einops-utils>=0.1.2",
"torchvision",
"tqdm",
"x-mlps-pytorch>=0.3.1",
"x-transformers>=2.19.7",
"vit-pytorch>=1.21.5",
]
[project.urls]
Homepage = "https://pypi.org/project/dreamer4/"
Repository = "https://codeberg.org/lucidrains/dreamer4"
[project.optional-dependencies]
examples = []
test = [
"pytest",
"pytest-shard"
]
[tool.pytest.ini_options]
pythonpath = [
"."
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.4.2",
]
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.build]
ignore-vcs = true
include = [
"/dreamer4",
"/README.md",
"/LICENSE",
]
exclude = [
"/tests",
"*.sh",
"*.png",
]
[tool.hatch.build.targets.wheel]
packages = ["dreamer4"]