-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
43 lines (38 loc) · 977 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "mcstructure"
version = "0.0.1b5"
description = "Read and write Minecraft .mcstructure files."
dependencies = [
"numpy>=1.21",
"pynbt>=2",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment",
"Typing :: Typed",
]
keywords = [
"mcstructure",
"Minecraft",
]
[project.optional-dependencies]
docs = [
"furo",
"myst-parser>=2",
"Sphinx>=7",
"sphinx-copybutton>=0",
]
[project.urls]
"Documentation" = "https://mcstructure.readthedocs.io/en/latest/"
"Source Code" = "https://github.com/phoenixr-codes/mcstructure/"