-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (68 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
89 lines (68 loc) · 2.12 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
#######################
# Python build system #
#######################
# The build system to use when installing this package.
# Used when installing the package with `pip install .`.
# See also: https://www.python.org/dev/peps/pep-0517/
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
###################
# Project settings #
###################
# The name of your project.
# Ensure that it is available on PyPI: https://pypi.org/
name = "lihzahrd"
# The version of the package.
version = "3.1.1"
# A brief, one-sentence description about your project.
description = "Terraria world parser in Python"
# A list of the authors of the project.
authors = [
{name = "Stefano Pigozzi", email = "me@steffo.eu"},
]
# A list of maintainers of the project.
# Often, it is the same as the authors list.
maintainers = [
{name = "Stefano Pigozzi", email = "me@steffo.eu"},
]
# The license of the package.
# Uses SPDX format: https://spdx.org/licenses/
license = "EUPL-1.2"
# The README file.
readme = "README.md"
# Up to five keywords related to your project.
# See also: https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/#keywords
keywords = [
"terraria",
"parser",
"game",
]
# Any number of trove classifiers that apply to your project.
# See the list at: https://pypi.org/classifiers/
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6"
]
# The minimum version of Python required to run the project.
requires-python = ">=3.6.2"
# A list of dependencies of the project, in pip format.
dependencies = []
[project.urls]
##################
# URLs #
##################
# Project URLs in a name → link mapping.
"Repository" = "https://forge.steffo.eu/steffo/lihzahrd/"
"Documentation" = "https://gh.steffo.eu/lihzahrd/"
[project.optional-dependencies]
##############################
# Optional dependencies #
##############################
# Same as dependencies, but with a key denoting the relevant extra.
docs = [
"sphinx>=2.2.1",
"sphinx_rtd_theme>=0.4.3"
]