-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
51 lines (48 loc) · 1.34 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
[build-system]
requires = [
"setuptools>=61.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "spireslayer"
version = "1.1.0"
keywords = ["slay-the-spire", "slay", "spire", "save", "editor"]
authors = [
{ name="Rahmat Nazali Salimi", email="[email protected]" },
]
maintainers = [
{ name="Rahmat Nazali Salimi", email="[email protected]" },
]
description = "Save file editor for Slay the Spire"
readme = "README-PYPI.md"
requires-python = ">=3.8.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Games/Entertainment"
]
dependencies = []
[project.urls]
"Homepage" = "https://github.com/rahmatnazali/spireslayer"
"Bug Tracker" = "https://github.com/rahmatnazali/spireslayer/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["spireslayer"]
exclude = [
".github",
"assets",
"backups",
"example",
"venv"
]
namespaces = false