-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (59 loc) · 1.29 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
[tool.poetry]
name = "pigstep"
version = "0.2.1"
description = "A beet plugin for importing songs into Minecraft"
authors = ["Valentin Berlier <berlier.v@gmail.com>"]
license = "MIT"
homepage = "https://github.com/vberlier/pigstep"
repository = "https://github.com/vberlier/pigstep"
documentation = "https://github.com/vberlier/pigstep"
readme = "README.md"
keywords = [
"beet",
"minecraft",
"note-block-studio"
]
include = ["pigstep/py.typed"]
[tool.poetry.dependencies]
python = "^3.8"
pynbs = "^0.4.2"
beet = ">=0.22.0"
[tool.poetry.dev-dependencies]
black = "^21.4b0"
isort = "^5.8.0"
rope = "^0.19.0"
python-semantic-release = "^7.15.3"
pytest = "^6.2.3"
pytest-insta = "^0.1.10"
lectern = ">=0.11.1"
[tool.poetry.plugins.beet]
autoload = "pigstep.plugin.autoload"
[tool.black]
target-version = ["py38"]
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| node_modules
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
[tool.semantic_release]
branch = "main"
version_variable = ["pigstep/__init__.py:__version__"]
version_toml = "pyproject.toml:tool.poetry.version"
major_on_zero = false
build_command = "poetry build"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"