-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 857 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "wmwpy"
authors = [
{ name="ego-lay-atman-bay" },
]
description = "Python module to work with files in the Where's My Water? mobile game series."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"lxml",
"numpy",
"Pillow",
"natsort",
"filetype",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/wmw-modding/wmwpy"
"Bug Tracker" = "https://github.com/wmw-modding/wmwpy/issues"
"Documentation" = "https://wmw-modding.github.io/wmwpy/"
[tool.setuptools.dynamic]
version = { attr = "wmwpy.__version__" }