-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
74 lines (66 loc) · 1.56 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = [
"setuptools >= 42",
"wheel",
"versioneer",
"pybind11[global] == 2.13.6",
]
build-backend = "setuptools.build_meta"
[project]
name = "amulet-nbt"
authors = [
{name = "James Clare"},
{name = "Ben Gothard"},
]
description = "Read and write Minecraft NBT and SNBT data."
dynamic = ["version", "readme"]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"amulet-compiler-target == 1.0",
"numpy >= 1.17, < 3.0"
]
[project.optional-dependencies]
docs = [
"Sphinx>=1.7.4",
"sphinx-autodoc-typehints>=1.3.0",
"sphinx_rtd_theme>=0.3.1",
]
dev = [
"black>=22.3",
"pre_commit>=1.11.1",
"mypy",
"types-pyinstaller",
"wheel",
"versioneer",
"pybind11[global] == 2.13.6",
]
[project.urls]
Homepage = "https://www.amuletmc.com"
Repository = "https://github.com/Amulet-Team/Amulet-NBT"
Issues = "https://github.com/Amulet-Team/Amulet-NBT/issues"
[tool.setuptools]
include-package-data = false
[tool.setuptools.package-data]
"*" = [
"*Config.cmake",
"**/*.hpp",
"**/*.dll",
"**/*.so",
"**/*.dylib",
"**/*.lib",
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[project.entry-points.pyinstaller40]
hook-dirs = "amulet_nbt.__pyinstaller:get_hook_dirs"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/amulet_nbt/_version.py"
versionfile_build = "amulet_nbt/_version.py"
tag_prefix = ""
parentdir_prefix = "amulet_nbt-"