-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
30 lines (27 loc) · 947 Bytes
/
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Quartz"
version = "0.1.0"
description = "An advanced game-engine for creating advanced text-based games in the terminal."
readme = "README.md"
authors = [{ name = "BloodhavenStudios", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Intended Audience :: Developers",
"Lincense :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libaries :: Python Modules",
"Topic :: Software Development :: Libaries",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = []
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/BloodhavenStudios/QuartzEngine"