-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.04 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "mcstructure"
version = "0.0.1b6"
description = "Read and write Minecraft .mcstructure files."
dependencies = [
"numpy==2.3.0",
"nbtx==0.4.1",
]
requires-python = ">=3.13"
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]
dev = [
"pytest>=8",
"mypy==1.16.1",
"black==25.1.0",
]
docs = [
"furo",
"myst-parser>=2",
"Sphinx>=7",
"sphinx-copybutton>=0",
]
[tool.mypy]
strict = true
[project.urls]
"Documentation" = "https://mcstructure.readthedocs.io/en/latest/"
"Source Code" = "https://github.com/phoenixr-codes/mcstructure/"