-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
86 lines (78 loc) · 2.06 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
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = [
"setuptools >= 42",
"wheel",
"versioneer",
"pybind11[global] == 2.13.6",
"Amulet_pybind11_extensions @ git+https://github.com/Amulet-Team/Amulet-pybind11-extensions.git@5a45161fefc63c06bfa88c3a1005488824726a19",
"amulet_nbt == 4.0a10",
"amulet_leveldb == 2.0a3",
]
build-backend = "setuptools.build_meta"
[project]
name = "amulet-core"
authors = [
{name = "James Clare"},
{name = "Ben Gothard"},
]
description = "A Python library for reading/writing Minecraft's various save formats."
dynamic = ["version", "readme"]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy ~= 2.0",
"portalocker ~= 2.4",
"platformdirs ~= 3.1",
"pillow ~= 10.0",
"amulet_runtime_final ~= 1.1",
"amulet_compiler_target == 1.0",
"amulet_nbt == 4.0a10",
"amulet_leveldb ~= 2.0a3",
]
[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",
"isort",
"autoflake",
"mypy",
"types-pyinstaller",
"wheel",
"versioneer",
"pybind11_stubgen" # @ git+https://github.com/Amulet-Team/pybind11-stubgen.git@c3a6ef67ec23d5a39e8cdc73b2c3cd8c1794d6f2",
]
[project.urls]
Homepage = "https://www.amuletmc.com"
Repository = "https://github.com/Amulet-Team/Amulet-Core"
Issues = "https://github.com/Amulet-Team/Amulet-Core/issues"
[tool.setuptools]
include-package-data = false
[tool.setuptools.package-data]
"*" = [
"*Config.cmake",
"**/*.png",
"**/*.hpp",
"**/*.dll",
"**/*.so",
"**/*.dylib",
"**/*.lib",
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[project.entry-points.pyinstaller40]
hook-dirs = "amulet.__pyinstaller:get_hook_dirs"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/amulet/_version.py"
versionfile_build = "amulet/_version.py"
tag_prefix = ""
parentdir_prefix = "amulet-"