generated from SteamDeckHomebrew/decky-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
39 lines (32 loc) · 870 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "steamback"
version = "1.1.2"
description = "A python library and tool for backing up Steam save games"
authors = [
"Kevin Hester <[email protected]>"
]
license = "GPL-3.0-or-later"
repository = "https://github.com/geeksville/steamback"
readme = "README.md"
packages = [
{ include = "steamback", from = "py_modules" },
]
[tool.poetry.scripts]
steamback = "steamback.__main__:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/geeksville/steamback/issues"
[tool.poetry.dependencies]
python = "^3.11"
platformdirs = "^4.0.0"
pillow = "^10.1.0"
psutil = "^5.9.1"
async-tkinter-loop = ">=0.7,<0.10"
sv-ttk = "^2.4"
timeago = "^1.0.16"
[tool.poetry.group.dev.dependencies]
flake8 = ">=6.1,<8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.setuptools.package-data]
"*" = ["*.png"]