-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
pyproject.toml
49 lines (45 loc) · 1.4 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
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools>=30.3.0", "wheel", "setuptools_scm"]
# Actually tell PEP517 tools to call setuptools
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "ppb"
authors = [
{name = "Piper Thunstrom", email="[email protected]"}
]
maintainers = [
{name = "Piper Thunstrom", email="[email protected]"}
]
description = "An Event Driven Python Game Engine"
readme = "README.md"
license = { "file" = "LICENSE.txt" }
classifiers =[
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"License :: OSI Approved :: Artistic License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries",
"Operating System :: OS Independent"
]
requires-python = "> 3.9"
dependencies = [
"PySDL2",
"pysdl2-dll",
"ppb-vector ~= 1.0",
"Deprecated ~= 1.2.12"
]
[project.urls]
Homepage = "https://ppb.dev"
Respository = "https://github.com/ppb/pursuedpybear"
Issues = "https://github.com/ppb/pursuedpybear/issues"
[tool.setuptools_scm]
local_scheme = "dirty-tag"