blob: 804fd9478a2fb0bbbfa1c16813553dd4e267f3f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[project]
name = "gamechest"
version = "0.1.0"
description = "Add your description here"
readme = "README.rst"
requires-python = ">=3.13"
dependencies = [
"docopt-ng>=0.9.0",
"humanfriendly>=10.0",
"pyyaml>=6.0.3",
"rich>=14.3.2",
"xdg>=6.0.0",
]
[project.scripts]
gamechest = "gamechest:__main__.main"
[dependency-groups]
dev = [
"ipdb>=0.13.13",
"ipython>=9.10.0",
]
|