-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tool.poetry]
name = "mini_gui_games"
version = "0.0.5"
description = "small funny games"
license = "MIT"
authors = ["Vasyl Boliukh <vskesha@gmail.com>"]
maintainers = ["Vasyl Boliukh <vskesha@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/Vskesha/Mini_GUI_Games"
repository = "https://github.com/Vskesha/Mini_GUI_Games"
documentation = "https://github.com/Vskesha/Mini_GUI_Games/blob/main/README.md"
keywords = ["games", "gui", "bandergoose", "hanoitower", "snake", "tictactoe"]
classifiers = [
"Operating System :: OS Independent",
"Topic :: Games/Entertainment",
]
packages = [
{ include = "bandergoose"},
{ include = "hanoitower"},
{ include = "snake"},
{ include = "tictactoe"},
{ include = "info.py"}
]
[tool.poetry.dependencies]
python = "^3.10"
pygame = "^2.5.2"
colorama = "^0.4.6"
[tool.poetry.scripts]
games = "info:info"
miniguigames = "info:info"
mini_gui_games = "info:info"
bandergoose = "bandergoose.bandergoose:main"
hanoitower = "hanoitower.hanoitower:main"
snake = "snake.snake:main"
tictactoe = "tictactoe.tictactoe:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"