-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (53 loc) · 1.52 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
#[project]
#name = "agstoolbox"
#dynamic = ["version"]
#description = "Utility to help manage Adventure Game Studio Projects and Editors."
#readme = "README.rst"
#requires-python = ">=3.8"
#license = {file = "LICENSE"}
#keywords = ["AGS Toolbox", "Adventure Game Studio", "development", "ags", "Game Development", "gamedev"]
#authors = [
# {name = "eri0o", email = "[email protected]" }
#]
#classifiers = [
# "Intended Audience :: Developers",
# "Topic :: Software Development :: Build Tools",
# "License :: OSI Approved :: MIT License",
# "Programming Language :: Python :: 3.8",
# "Programming Language :: Python :: 3.9",
# "Programming Language :: Python :: 3.10",
# "Programming Language :: Python :: 3.11",
# "Programming Language :: Python :: 3 :: Only",
#]
#dependencies = [
# "pyqt6",
# "requests",
# "defusedxml",
# "platformdirs",
# "pefile"
#]
#
#[tool.setuptools.dynamic]
#version = {attr = "agstoolbox.__version__"}
#
#[project.optional-dependencies]
#test = ["pytest"]
#
#[project.urls]
#"Homepage" = "https://www.adventuregamestudio.co.uk/forums/index.php?topic=59938.0"
#"Bug Reports" = "https://github.com/ericoporto/agstoolbox/issues"
#"Funding" = "https://github.com/sponsors/ericoporto"
#"Source" = "https://github.com/ericoporto/agstoolbox/"
#
#[project.scripts]
#agstoolbox = "agstoolbox"
#atbx = "atbx"
#
#[tool.setuptools]
#package_data = {"agstoolbox" = ["data/*.png"]}
#
#[tool.setuptools.packages.find]
#where = ["src"]
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"