-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
79 lines (69 loc) · 2.11 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "fusion-engine"
dynamic = ["version"]
description = "A custom open-source game engine on OpenGL and Python, it’s written in pure Python! It’s easy and fast!"
requires-python = ">=3.8"
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "GNU GPLv3" }
authors = [{ name = "Dimkauzh", email = "[email protected]" }]
keywords = [
"game",
"python",
"gamedev",
"game-engine",
"pygame",
"game-development",
"pure-python",
"pygame-mixer",
"pygame-ttf",
"pygame-image",
"python-game",
"pygame-library",
"python-game-library",
"python-game-engine",
"python-games",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Games/Entertainment",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Video",
]
dependencies = [
"pygame-ce>=2.4.0",
]
[tool.pdm]
distribution = true
[tool.pdm.options]
includes = ["**/*.png", "**/*.ttf"]
[tool.pdm.build]
package-dir = "src"
[tool.pdm.version]
source = "file"
path = "src/fusionengine/__init__.py"
[tool.pdm.dev-dependencies]
lint = ["black", "mkdocs-material"]
[tool.pdm.scripts]
example1 = "python src/fusionengine/examples/example1.py"
example2 = "python src/fusionengine/examples/example2.py"
example3 = "python src/fusionengine/examples/example3.py"
example4 = "python src/fusionengine/examples/example4.py"
example5 = "python src/fusionengine/examples/example5.py"
gltest = "python tests/gltest.py"
docs = "mkdocs serve"
lint = "black ."