-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.61 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = [
"setuptools>=42",
"versioneer",
"packaging",
]
build-backend = "build_requires"
backend-path = [""]
[project]
name = "amulet-resource-pack"
authors = [
{name = "James Clare"},
]
description = "A Python and C++ library for interacting with Minecraft resource packs."
dynamic = ["version", "readme", "dependencies"]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"setuptools>=42",
"types-setuptools",
"versioneer",
"types-versioneer",
"packaging",
"wheel",
"pybind11_stubgen>=2.5.4",
"black>=22.3",
"isort",
"autoflake",
"mypy",
"types-pyinstaller",
"amulet-test-utils~=1.3",
]
[project.urls]
Homepage = "https://www.amuletmc.com"
Repository = "https://github.com/Amulet-Team/Amulet-Resource-Pack"
Issues = "https://github.com/Amulet-Team/Amulet-Resource-Pack/issues"
[tool.setuptools]
include-package-data = false
[tool.setuptools.package-data]
"*" = [
"*Config.cmake",
"**/*.hpp",
"**/*.dll",
"**/*.so",
"**/*.dylib",
"**/*.lib",
"**/*.json",
"**/*.mcmeta",
"**/*.png",
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[project.entry-points.pyinstaller40]
hook-dirs = "amulet.resource_pack.__pyinstaller:get_hook_dirs"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/amulet/resource_pack/_version.py"
versionfile_build = "amulet/resource_pack/_version.py"
tag_prefix = ""
parentdir_prefix = "amulet_resource_pack-"