-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 1.16 KB
/
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
40
41
[tool.poetry]
name = "noita-save-manager"
version = "0.1.4"
description = "Noita Save Manager, allows for backup and restoring of save files"
authors = ["mcgillij <mcgillivray.jason@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/mcgillij/noita_save_manager"
repository = "https://github.com/mcgillij/noita_save_manager"
documentation = "https://github.com/mcgillij/noita_save_manager/blob/main/README.md"
keywords = ["noita", "save", "backup", "restore", "manager"]
classifiers = [
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Topic :: Games/Entertainment",
"Topic :: System :: Archiving :: Backup",
"Topic :: Utilities",
]
include = [ "LICENSE", ]
[tool.poetry.scripts]
noita_save_manager = 'noita_save_manager.save_manager:main'
[tool.poetry.dependencies]
python = "^3.9"
PySimpleGUI = "^4.34.0"
[tool.poetry.dev-dependencies]
pylint = "^2.7.1"
flake8 = "^3.8.4"
black = "^20.8b1"
pyinstaller = "^4.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"