Skip to content

Commit

Permalink
Replace setup.py with pyproject.toml.
Browse files Browse the repository at this point in the history
  • Loading branch information
giogix2 committed Oct 14, 2024
1 parent a2d8b1b commit 9db8227
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 40 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PygameSpiel is a [Pygame](https://www.pygame.org)-based library to play board ga
pip install pygame_spiel
```

## Version 0.1.1
## Version 1.0.0
Games currently available:
* Breakthrough
* Tic Tac Toe
Expand Down
37 changes: 37 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[project]
name = "pygame_spiel"
version = "1.0.0"
dependencies = [
"pygame==2.5.0",
"tensorflow==2.13.0",
"gdown==4.7.1",
"pygame-menu==4.4.3",
]
requires-python = ">=3.9.1"
authors = [
{name = "Giovanni Ortolani", email = "giovorto@pm.me"},
]
maintainers = [
{name = "Giovanni Ortolani", email = "giovorto@pm.me"}
]
description = "Pygame spiel"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["open_spiel", "pygame"]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]

[project.optional-dependencies]
spiel = [
"open-spiel==1.3",
]

[project.urls]
Homepage = "https://github.com/giogix2/pygame_spiel"
Repository = "https://github.com/giogix2/pygame_spiel"

[project.scripts]
pygame_spiel = "pygame_spiel.main:pygame_spiel"
5 changes: 0 additions & 5 deletions requirements.txt

This file was deleted.

34 changes: 0 additions & 34 deletions setup.py

This file was deleted.

0 comments on commit 9db8227

Please sign in to comment.