-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.19 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
[build-system]
requires = ["setuptools", "wheel", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "PyRobbo"
authors = [{ name = "Maciej Dems", email = "[email protected]" }]
description = "Clone of an old 8-bit Atari game Robbo"
readme = "README.md"
requires-python = ">=3"
license = { text = "GPL3" }
keywords = ["game", "pygame", "robbo", "atari", "clone"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment :: Arcade",
"Topic :: Games/Entertainment :: Puzzle Games",
]
dependencies = ["pygame>=2.0.0", "PyYAML>=5.3.1", "appdirs>=1.4.4"]
dynamic = ["version"]
[project.urls]
Homepage = "http://github.com/macdems/pyrobbo"
[project.gui-scripts]
pyrobbo = "robbo:main"
[tool.setuptools.package-data]
robbo = [
"sounds/*.wav",
"levels/*.dat",
"skins/*/*.png",
"robbo.svg",
"robbo.ico",
]
[tool.setuptools_scm]
write_to = "robbo/__version__.py"
git_describe_command = "git describe --dirty --tags --long --match v* --first-parent"