Update cache and egg-info files
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: blokus-gym
|
||||
Version: 0.1.0
|
||||
Summary: A Gymnasium-compatible RL environment for the board game Blokus
|
||||
Summary: A Gymnasium-compatible RL environment for the board game Blokus, with a playable web UI
|
||||
Author: Blokus Gym Contributors
|
||||
License: MIT
|
||||
Project-URL: Homepage, https://github.com/blokus-gym/blokus-gym
|
||||
Project-URL: Documentation, https://github.com/blokus-gym/blokus-gym#readme
|
||||
Keywords: reinforcement-learning,gymnasium,blokus,board-game,pettingzoo
|
||||
Keywords: reinforcement-learning,gymnasium,blokus,board-game,pettingzoo,flask,game-ui
|
||||
Classifier: Development Status :: 3 - Alpha
|
||||
Classifier: Intended Audience :: Science/Research
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
@@ -22,6 +22,8 @@ Requires-Dist: gymnasium>=0.29
|
||||
Requires-Dist: pettingzoo>=1.26
|
||||
Provides-Extra: render
|
||||
Requires-Dist: matplotlib>=3.7; extra == "render"
|
||||
Provides-Extra: ui
|
||||
Requires-Dist: flask>=3.0; extra == "ui"
|
||||
Provides-Extra: dev
|
||||
Requires-Dist: pytest>=7.4; extra == "dev"
|
||||
Requires-Dist: pytest-cov>=4.1; extra == "dev"
|
||||
|
||||
@@ -3,6 +3,7 @@ src/blokus_gym/__init__.py
|
||||
src/blokus_gym.egg-info/PKG-INFO
|
||||
src/blokus_gym.egg-info/SOURCES.txt
|
||||
src/blokus_gym.egg-info/dependency_links.txt
|
||||
src/blokus_gym.egg-info/entry_points.txt
|
||||
src/blokus_gym.egg-info/requires.txt
|
||||
src/blokus_gym.egg-info/top_level.txt
|
||||
src/blokus_gym/core/__init__.py
|
||||
@@ -17,8 +18,13 @@ src/blokus_gym/utils/__init__.py
|
||||
src/blokus_gym/utils/render.py
|
||||
src/blokus_gym/wrappers/__init__.py
|
||||
src/blokus_gym/wrappers/action_mask.py
|
||||
src/blokus_ui/__init__.py
|
||||
src/blokus_ui/app.py
|
||||
src/blokus_ui/session.py
|
||||
src/blokus_ui/store.py
|
||||
tests/test_board.py
|
||||
tests/test_envs.py
|
||||
tests/test_game.py
|
||||
tests/test_imports.py
|
||||
tests/test_pieces.py
|
||||
tests/test_ui.py
|
||||
@@ -15,3 +15,6 @@ matplotlib>=3.7
|
||||
[train]
|
||||
stable-baselines3>=2.2
|
||||
torch>=2.0
|
||||
|
||||
[ui]
|
||||
flask>=3.0
|
||||
|
||||
@@ -1 +1,2 @@
|
||||
blokus_gym
|
||||
blokus_ui
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user