-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
132 lines (121 loc) · 3.58 KB
/
pyproject.toml
File metadata and controls
132 lines (121 loc) · 3.58 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
[build-system]
requires = ["hatchling>=1.27.0,<2"]
build-backend = "hatchling.build"
[project]
name = "deepcubeai"
dynamic = ["version"]
description = "Learning Discrete World Models for Heuristic Search"
readme = "README.md"
requires-python = ">=3.10,<3.13"
authors = [{ name = "Misagh Soltani", email = "msoltani@email.sc.edu" }]
license = "MIT"
license-files = ["LICEN[CS]E*"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
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.2.2, <3",
"numpy>=2.3.2, <3",
"matplotlib>=3.10.3, <4",
"networkx>=3.5, <4",
"opencv-python>=4.11.0.86, <5",
"tensorboard>=2.20.0, <3",
"gymnasium>=1.2.0, <2",
]
[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.hatchling.packages.find]
# include = ["deepcubeai*"] # Only consider package names starting with deepcubeai (e.g. deepcubeai, deepcubeai.training, etc.) when auto-discovering packages
# namespaces = false # Don't treat directories without an __init__.py as namespace packages; only folders with __init__.py count
[tool.hatchling]
include-package-data = true
# [tool.hatch.metadata]
# allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["deepcubeai"]
include = [
"deepcubeai/environments/puzzlegen/data/**",
"deepcubeai/environments/sokoban_data/surface/**",
"deepcubeai/environments/sokoban_data/goal_states.zip",
"deepcubeai/data/cube3/search_test/search_test_data_reverse.pkl",
"deepcubeai/data/cube3/search_test/search_test_data.pkl",
"deepcubeai/data/sokoban/search_test/search_test_data.pkl",
"deepcubeai/environments/envs.json",
"deepcubeai/py.typed",
"README.md",
]
exclude = [
"*.py[cod]",
"__pycache__/**",
".DS_Store",
".git",
".vscode",
"deepcubeai/saved_env_models/**",
"deepcubeai/saved_heur_models/**",
"deepcubeai/results/**",
"deepcubeai/plots/**",
"deepcubeai/data/**",
]
[tool.hatch.build.targets.sdist]
packages = ["deepcubeai"]
include = [
"deepcubeai/environments/puzzlegen/data/**",
"deepcubeai/environments/sokoban_data/surface/**",
"deepcubeai/environments/sokoban_data/goal_states.zip",
"deepcubeai/data/cube3/search_test/search_test_data_reverse.pkl",
"deepcubeai/data/cube3/search_test/search_test_data.pkl",
"deepcubeai/data/sokoban/search_test/search_test_data.pkl",
"deepcubeai/environments/envs.json",
"deepcubeai/py.typed",
"README.md",
]
exclude = [
"*.py[cod]",
"__pycache__/**",
".DS_Store",
"deepcubeai/saved_env_models/**",
"deepcubeai/saved_heur_models/**",
"deepcubeai/results/**",
"deepcubeai/plots/**",
"deepcubeai/data/**",
".vscode",
".git",
]
[tool.hatch.version]
path = "deepcubeai/__init__.py"
[dependency-groups]
default = ["deepcubeai"]
dev = [{ include-group = "default" }, "ruff", "pyright"]
build = [{ include-group = "default" }, "hatch"]
all = [
{ include-group = "default" },
{ include-group = "dev" },
{ include-group = "build" },
]