Update cache and egg-info files

This commit is contained in:
mattlamb227@gmail.com
2026-08-13 00:17:27 -04:00
parent 3b2ffa28d4
commit 3657a820ba
7 changed files with 15 additions and 3 deletions
+4 -2
View File
@@ -1,12 +1,12 @@
Metadata-Version: 2.4 Metadata-Version: 2.4
Name: blokus-gym Name: blokus-gym
Version: 0.1.0 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 Author: Blokus Gym Contributors
License: MIT License: MIT
Project-URL: Homepage, https://github.com/blokus-gym/blokus-gym Project-URL: Homepage, https://github.com/blokus-gym/blokus-gym
Project-URL: Documentation, https://github.com/blokus-gym/blokus-gym#readme 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: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License Classifier: License :: OSI Approved :: MIT License
@@ -22,6 +22,8 @@ Requires-Dist: gymnasium>=0.29
Requires-Dist: pettingzoo>=1.26 Requires-Dist: pettingzoo>=1.26
Provides-Extra: render Provides-Extra: render
Requires-Dist: matplotlib>=3.7; extra == "render" Requires-Dist: matplotlib>=3.7; extra == "render"
Provides-Extra: ui
Requires-Dist: flask>=3.0; extra == "ui"
Provides-Extra: dev Provides-Extra: dev
Requires-Dist: pytest>=7.4; extra == "dev" Requires-Dist: pytest>=7.4; extra == "dev"
Requires-Dist: pytest-cov>=4.1; extra == "dev" Requires-Dist: pytest-cov>=4.1; extra == "dev"
+7 -1
View File
@@ -3,6 +3,7 @@ src/blokus_gym/__init__.py
src/blokus_gym.egg-info/PKG-INFO src/blokus_gym.egg-info/PKG-INFO
src/blokus_gym.egg-info/SOURCES.txt src/blokus_gym.egg-info/SOURCES.txt
src/blokus_gym.egg-info/dependency_links.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/requires.txt
src/blokus_gym.egg-info/top_level.txt src/blokus_gym.egg-info/top_level.txt
src/blokus_gym/core/__init__.py 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/utils/render.py
src/blokus_gym/wrappers/__init__.py src/blokus_gym/wrappers/__init__.py
src/blokus_gym/wrappers/action_mask.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_board.py
tests/test_envs.py tests/test_envs.py
tests/test_game.py tests/test_game.py
tests/test_imports.py tests/test_imports.py
tests/test_pieces.py tests/test_pieces.py
tests/test_ui.py
+3
View File
@@ -15,3 +15,6 @@ matplotlib>=3.7
[train] [train]
stable-baselines3>=2.2 stable-baselines3>=2.2
torch>=2.0 torch>=2.0
[ui]
flask>=3.0
+1
View File
@@ -1 +1,2 @@
blokus_gym blokus_gym
blokus_ui
Binary file not shown.
Binary file not shown.