-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
45 lines (37 loc) · 971 Bytes
/
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
[tool.poetry]
name = "nbtlib"
version = "2.0.4"
description = "A python package to read and edit nbt data"
authors = ["Valentin Berlier <berlier.v@gmail.com>"]
license = "MIT"
homepage = "https://github.com/vberlier/nbtlib"
repository = "https://github.com/vberlier/nbtlib"
documentation = "https://github.com/vberlier/nbtlib"
readme = "README.md"
keywords = [
"nbt",
"nbt-parser",
"schema",
"minecraft",
"nbtlib",
]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "*"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-benchmark = "^3.4.1"
black = "^21.8b0"
mudkip = "^0.4.10"
pytest-minecraft = "^0.1.1"
python-semantic-release = "^7.19.1"
[tool.poetry.scripts]
nbt = 'nbtlib.cli:main'
[tool.semantic_release]
branch = "main"
version_variable = ["nbtlib/__init__.py:__version__"]
version_toml = "pyproject.toml:tool.poetry.version"
build_command = "poetry build"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"