Initial version

This commit is contained in:
csd4ni3l
2025-04-21 10:50:45 +02:00
commit 5c3a23a711
16 changed files with 1458 additions and 0 deletions

13
pyproject.toml Normal file
View File

@@ -0,0 +1,13 @@
[project]
name = "game-of-life"
version = "0.1.0"
description = "Game of life recreated with Python and the Arcade and pyglet modules."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"arcade",
"pypresence>=4.3.0",
]
[tool.uv.sources]
arcade = { git = "https://github.com/pythonarcade/arcade.git", rev = "gui/controller" }