-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
pyproject.toml
49 lines (43 loc) · 1.48 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]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "freegames"
description = "Free Python Games"
authors = [
{"name" = "Grant Jenks", "email" = "[email protected]"},
]
readme = "README.rst"
requires-python = ">=3.7"
keywords = ["free", "games"]
license = {"text" = "Apache 2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Arcade",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Games/Entertainment :: Puzzle Games",
"Topic :: Games/Entertainment :: Side-Scrolling/Arcade Games",
"Topic :: Games/Entertainment :: Simulation",
"Topic :: Games/Entertainment :: Turn Based Strategy",
]
dynamic = ["version"]
[project.scripts]
freegames = "freegames.__main__:main"
[project.urls]
Documentation = "https://grantjenks.com/docs/freegames/"
Funding = "https://gum.co/freegames"
Source = "https://github.com/grantjenks/free-python-games"
Tracker = "https://github.com/grantjenks/django-codemirror6/issues"
[tool.setuptools.dynamic]
version = {attr = "freegames.__version__"}
[tool.setuptools.package-data]
freegames = ["*.gif"]
[tool.setuptools.packages.find]
where = ["src"]