-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 908 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 908 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
39
40
41
42
43
[build-system]
requires = [
"setuptools>=42",
]
build-backend = "setuptools.build_meta"
[project]
name = "amulet-minecraft-worlds"
version = "1.0"
authors = [
{name = "James Clare"},
]
description = "A collections of Minecraft worlds used for testing"
dynamic = ["readme"]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"setuptools>=42",
"wheel",
"black>=22.3",
"mypy",
]
[project.urls]
Homepage = "https://www.amuletmc.com"
Repository = "https://github.com/Amulet-Team/Amulet-Minecraft-Worlds"
Issues = "https://github.com/Amulet-Team/Amulet-Minecraft-Worlds/issues"
[tool.setuptools]
include-package-data = false
[tool.setuptools.package-data]
"*" = [
"*",
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}