-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.77 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (46 loc) · 1.77 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "py_maze"
description = "A command-line maze generator and game"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "John Haugabook", email = "johnhaugabook@gmail.com" },
]
keywords = [
"maze", "game", "terminal", "console", "puzzle", "solver", "collectibles",
"maze-generator", "prim", "recursive-division", "braid", "json", "cli",
"pipeline", "game-modes", "chase",
]
# every version listed is one the suite is run on: see
# .github/workflows/tests.yml, which builds its matrix from this list
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Games/Entertainment :: Puzzle Games",
]
# read from py_maze.__version__ so the version lives in exactly one place
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/isocialPractice/py_maze"
Documentation = "https://isocialpractice.github.io/py_maze/"
Repository = "https://github.com/isocialPractice/py_maze"
Changelog = "https://github.com/isocialPractice/py_maze/blob/main/CHANGELOG.md"
Issues = "https://github.com/isocialPractice/py_maze/issues"
[project.scripts]
py_maze = "py_maze.cli:main"
[tool.setuptools]
# every algorithm is a module under py_maze/algorithms, so the subpackage
# has to be installed alongside the package itself
packages = ["py_maze", "py_maze.algorithms"]
[tool.setuptools.dynamic]
version = { attr = "py_maze.__version__" }