Open jamesbraza opened 1 year ago
It would be cool to publish the core of this repo (e.g. Game.py, NeuralNet.py, etc.) to PyPI.
Game.py
NeuralNet.py
Python native namespace packaging makes it really easy to make games as installable sub-modules.
# Installs modules azg.Game, azg.NeuralNet, azg.MCTS, etc. pip install azg-core # Installs modules azg.othello.OthelloGame, azg.othello.OthelloLogic, etc. pip install azg-othello
It would be cool to publish the core of this repo (e.g.
Game.py
,NeuralNet.py
, etc.) to PyPI.Python native namespace packaging makes it really easy to make games as installable sub-modules.