-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 899 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 899 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
32
33
34
35
36
37
38
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "arlq"
dynamic = ["version"]
description = "ARQL, another rogue-like quest game."
requires-python = ">=3.10"
license = {text = "BSD 2-Clause License"}
keywords = []
authors = [
{ name = "Toshihiro Kamiya", email = "kamiya@mbj.nifty.com" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython"
]
urls = {Homepage = "https://github.com/tos-kamiya/arlq"}
dependencies = [
'pygame'
]
[project.readme]
file = "README-pypi.md"
content-type = "text/markdown"
[tool.hatch.version]
path = "src/arlq/__about__.py"
[project.gui-scripts]
arlq = "arlq:main"
[project.scripts]
arlq-cli = "arlq:main_cli"