blob: ad30a3e11f7c57a885c7d9cc1262fd98c06450c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[project]
name = "gamechestcli"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
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.script]
gamechest = "__main__:main"
[dependency-groups]
dev = [
"ipdb>=0.13.13",
"ipython>=9.10.0",
]
|