-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
62 lines (49 loc) · 1.25 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
[tool.poetry]
name = "bolt"
version = "0.49.1"
description = "Supercharge Minecraft commands with Python"
authors = ["Valentin Berlier <berlier.v@gmail.com>"]
license = "MIT"
homepage = "https://github.com/mcbeet/bolt"
repository = "https://github.com/mcbeet/bolt"
documentation = "https://github.com/mcbeet/bolt"
readme = "README.md"
keywords = [
"beet",
"minecraft",
"minecraft-commands",
"scripting-language",
"mcfunction"
]
include = ["bolt/py.typed"]
[tool.poetry.dependencies]
python = "^3.10"
beet = ">=0.108.0"
mecha = ">=0.95.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.1"
black = "^24.2.0"
isort = "^5.13.2"
python-semantic-release = "^7.33.3"
pytest-insta = "^0.3.0"
lectern = ">=0.34.0"
[tool.poetry.plugins.beet]
commands = "bolt.commands"
[tool.pytest.ini_options]
addopts = "tests --import-mode=importlib"
[tool.pyright]
typeCheckingMode = "strict"
reportShadowedImports = false
[tool.black]
target-version = ["py310"]
[tool.isort]
profile = "black"
[tool.semantic_release]
branch = "main"
version_variable = ["bolt/__init__.py:__version__"]
version_toml = "pyproject.toml:tool.poetry.version"
major_on_zero = false
build_command = "poetry build"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"