-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
44 lines (35 loc) · 1014 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
[tool.poetry]
name = "pynbs"
version = "1.1.0-beta.0"
description = "A simple python library to read and write .nbs files from Note Block Studio"
authors = ["Valentin Berlier <[email protected]>", "Bentroen <[email protected]>"]
license = "MIT"
homepage = "https://github.com/OpenNBS/pynbs"
repository = "https://github.com/OpenNBS/pynbs"
documentation = "https://github.com/OpenNBS/pynbs"
readme = "README.md"
keywords = [
"minecraft",
"note-block-studio",
"nbs-files"
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
isort = "^5.10.1"
python-semantic-release = "^7.27.1"
pytest = "^7.1.1"
pytest-insta = "^0.1.11"
[tool.black]
target-version = ["py38"]
[tool.isort]
profile = "black"
[tool.semantic_release]
branch = "main"
version_variable = ["pynbs/__init__.py:__version__"]
version_toml = "pyproject.toml:tool.poetry.version"
build_command = "poetry build"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"