diff --git a/pyproject.toml b/pyproject.toml index 4cee524..6aee0f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,16 +1,16 @@ [project] name = "2048" -version = "0.0.5" +version = "0.1.0" description = "2048 game with AI" authors = [{ name = "Kristofers Solo", email = "dev@kristofers.xyz" }] readme = "README.md" requires-python = ">=3.11" license = { text = "GPLv3" } dependencies = [ - "pygame-ce==2.3.2", "loguru==0.7.2", "attrs==23.1.0", "neat-python>=0.92", + "numpy==1.26.2", ] [tool.mypy] diff --git a/requirements.txt b/requirements.txt index 1646e49..4177d76 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -pygame-ce>=2.3.2 loguru>=0.7.2 attrs>=23.1.0 neat-python>=0.92 +numpy>=1.26.2 .