-
Notifications
You must be signed in to change notification settings - Fork 211
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 733 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (26 loc) · 733 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
[project]
name = "pgzero"
description = "A zero-boilerplate 2D games framework"
readme = "README.rst"
requires-python = ">=3.6"
dependencies = [
"pygame>=2.1",
"numpy",
"pyfxr",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://pygame-zero.readthedocs.io/"
Source = "https://github.com/lordmauve/pgzero"
[project.scripts]
pgzrun = "pgzero.runner:main"
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/pgzero/_version.py"
[tool.ruff]
builtins = [
"Actor", "Rect", "ZRect", "animate", "clock", "exit", "images", "keyboard", "keymods",
"keys", "mouse", "music", "screen", "sounds", "storage", "tone"
]