forked from SkyTemple/skytemple-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (59 loc) · 1.86 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "skytemple-files"
version = "1.8.3"
authors = [
{name = 'Marco "Capypara" Köpcke', email = "hello@capypara.de"},
# see About dialog or GitHub contributors list for additional people.
]
description = "Python library to edit the ROM of Pokémon Mystery Dungeon Explorers of Sky"
readme = "README.rst"
requires-python = ">=3.9"
keywords = ["rom-hacking", "game-modding", "skytemple"]
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 = [
"pmdsky-debug-py == 10.0.21",
"ndspy >= 3.0.0",
"range-typed-integers >= 1.0.1",
"Pillow >= 6.1.0",
"appdirs >= 1.4.0",
"explorerscript >= 0.2.1, < 0.3.0",
"skytemple-rust >= 1.8.2, < 1.9.0",
'pyobjc==10.3.1; sys_platform == "darwin"',
"dungeon-eos==0.0.5",
]
[project.urls]
Homepage = "https://skytemple.org"
Announcements = "https://blog.skytemple.org"
Documentation = "https://wiki.skytemple.org"
Repository = "https://github.com/SkyTemple/skytemple-files.git"
Issues = "https://github.com/SkyTemple/skytemple-files/issues"
Discord = "https://discord.gg/skytemple"
[project.optional-dependencies]
spritecollab = [
"gql[aiohttp] >= 3.5.0",
"graphql-core >= 3.2.0",
"aiohttp[speedups]",
"lru-dict >= 1.1.8",
]
[project.scripts]
skytemple_export_maps = "skytemple_files.export_maps:main"
[tool.ruff]
line-length = 120
extend-exclude = [
"fixture_autogen.py",
"fixture_autogen.pyi",
]
[tools.ruff.lint]
select = [ "W", "E", "F", "ARG"]