-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.5 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 = "bionicblue"
dynamic = ["version"]
dependencies = [
"pygame-ce",
]
authors = [
{ name="Kennedy Richard", email="kennedy@kennedyrichard.com" },
]
description = "A bionic boy fights robots to protect humanity in this action platformer game"
keywords = [
"gui",
"desktop",
"application",
"pygame",
"pygame-ce",
"game",
"indie",
"video game",
]
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Side-Scrolling/Arcade Games",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: pygame",
"Topic :: Desktop Environment",
"Topic :: Multimedia",
"Intended Audience :: End Users/Desktop",
]
license = { text="Unlicense" }
[project.urls]
Homepage = "https://bionicblue.indiesmiths.com"
"Source Code" = "https://github.com/IndieSmiths/bionicblue"
Forum = "https://github.com/IndieSmiths/bionicblue/discussions"
"Bug Tracker" = "https://github.com/IndieSmiths/bionicblue/issues"
Donate = "https://indiesmiths.com/donate"
[project.gui-scripts]
bionicblue = "bionicblue.__main__:run_game"
[build-system]
requires = ["setuptools>=59.6"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "bionicblue.__version__"}