-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
50 lines (47 loc) · 1.72 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
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "skytemple-ssb-debugger"
version = "1.8.2"
authors = [
{name = 'Marco "Capypara" Köpcke', email = "hello@capypara.de"},
# see About dialog or GitHub contributors list for additional people.
]
description = "Script Engine Debugger for Pokémon Mystery Dungeon Explorers of Sky"
readme = "README.rst"
requires-python = ">=3.9"
keywords = ["rom-hacking", "game-modding", "skytemple", "gtk"]
license = {text = "GPL-3.0-or-later"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"ndspy >= 3.0.0",
"skytemple-files >= 1.8.2, < 1.9.0",
"pmdsky-debug-py", # Whatever version skytemple-files requires.
"skytemple-icons >= 0.1.0",
"range-typed-integers >= 1.0.0",
"pygobject >= 3.26.0",
"pycairo >= 1.16.0",
"skytemple-ssb-emulator >= 1.8.0, < 1.9.0",
"explorerscript >= 0.2.1",
"nest-asyncio >= 1.4.1",
"pygtkspellcheck >= 5.0",
"importlib_metadata>=4.6; python_version < '3.10'"
]
[project.urls]
Homepage = "https://skytemple.org"
Announcements = "https://blog.skytemple.org"
Documentation = "https://wiki.skytemple.org"
Repository = "https://github.com/SkyTemple/skytemple-ssb-debugger.git"
Issues = "https://github.com/SkyTemple/skytemple-ssb-debugger/issues"
Discord = "https://discord.gg/skytemple"
[project.scripts]
skytemple-ssb-debugger = "skytemple_ssb_debugger.main:main"