-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (46 loc) · 1.17 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
50
51
52
53
54
[project]
name = "tappi-pyrl"
version = "0.1.0"
dependencies = [
"tcod",
"windows-curses ; sys_platform == 'win32'",
]
requires-python = ">= 3.12"
authors = [
{ name = "Tapani Kiiskinen", email = "tapani.kiiskinen@gmail.com" },
]
maintainers = [
{ name = "Tapani Kiiskinen", email = "tapani.kiiskinen@gmail.com" },
]
description = "Python Roguelike; essentially just an engine don't expect much gameplay."
readme = "README.md"
license = { file = "LICENSE.txt" }
keywords = ["pyrl", "roguelike", "game", "tappi"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console :: Curses",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Games/Entertainment",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
dev = [
"pytest",
"pyright",
]
[project.urls]
Repository = "https://github.com/velit/pyrl"
[project.scripts]
pyrl = "pyrl.main:main"
[project.gui-scripts]
pyrl = "pyrl.main:main"
[tool.pyright]
typeCheckingMode = "strict"
include = ["pyrl", "tests", "tools"]
exclude = []
ignore = []
reportPrivateUsage = false
pythonVersion = "3.12"
executionEnvironments = [
]