-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (63 loc) · 1.52 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
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "deepcubeai"
dynamic = ["version"]
description = "Learning Discrete World Models for Heuristic Search"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Misagh Soltani", email = "[email protected]" }]
license = { text = "MIT License" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = [
"DeepCubeAI",
"DeepCubeA",
"DeepCube",
"DeepXube",
"deep learning",
"reinforcement learning",
"deep reinforcement learning",
"search",
"heuristic search",
"pathfinding",
"planning",
"Rubik's Cube",
"Sokoban",
"Q*",
"model-based reinforcement learning",
"discrete world model",
"deep q-learning",
"deep q-network",
"Q* search",
]
dependencies = [
'torch>=2.0',
'numpy == 1.*',
'matplotlib',
'scikit-learn',
'networkx',
'imageio',
'imageio-ffmpeg',
'gym',
'opencv-python-headless',
'openmpi',
'mpi',
'tensorboard',
]
[project.urls]
GitHub = "https://github.com/misaghsoltani/DeepCubeAI/"
Paper = "https://rlj.cs.umass.edu/2024/papers/Paper225.html"
[project.scripts]
deepcubeai = "deepcubeai.main:main"
[tool.setuptools.packages.find]
include = ["deepcubeai*"]
namespaces = false
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "deepcubeai.__version__" }