-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (53 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
55 lines (53 loc) · 1.3 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
52
53
54
55
[project]
name = "Space-Trader"
version = "1.2.4"
authors = [
{name = "RPINerd"}
]
description = "A space trading game"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Environment :: X11 Applications",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Pytest",
"Topic :: Games/Entertainment :: Role-Playing",
"Topic :: Games/Entertainment :: Simulation",
"Topic :: Games/Entertainment :: Turn Based Strategy",
"Natural Language :: English",
]
keywords = [
"space",
"trading",
"game",
"palmOS",
"palm pilot",
"rogue",
"space trader",
"spacetrader",
"dark void",
"pygame",
"rpg",
"simulation",
]
[project.optional-dependencies]
test = [
"pytest>=9.0.3",
"ruff>=0.0.241",
]
[project.urls]
Homepage = "https://github.com/RPINerd/Space-Trader"
Issues = "https://github.com/RPINerd/Space-Trader/issues"
[tool.ruff.lint]
extend-ignore = [
"ERA001", # Commented out code
]