-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.16 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"versioneer",
]
build-backend = "setuptools.build_meta"
[project]
name = "amulet-io"
authors = [
{name = "James Clare"},
]
description = "A tiny C++ header-only binary reader and writer library."
dynamic = ["version", "readme"]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"setuptools>=42",
"versioneer",
"wheel",
"pybind11[global]==2.13.6",
"amulet-test-utils~=1.0",
"black>=22.3",
]
[project.urls]
Homepage = "https://www.amuletmc.com"
Repository = "https://github.com/Amulet-Team/Amulet-IO"
Issues = "https://github.com/Amulet-Team/Amulet-IO/issues"
[tool.setuptools]
include-package-data = false
[tool.setuptools.package-data]
"*" = [
"*Config.cmake",
"**/*.hpp",
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/amulet/io/_version.py"
versionfile_build = "amulet/io/_version.py"
tag_prefix = ""
parentdir_prefix = "amulet-io-"