-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
70 lines (57 loc) · 1.71 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 = "bolt-expressions"
version = "0.17.0"
description = "Provides pandas-like expressions capabilities to the bolt extension of mecha"
authors = ["rx97", "TheWii"]
license = "MIT"
homepage = "https://github.com/rx-modules/bolt-expressions"
repository = "https://github.com/rx-modules/bolt-expressions"
documentation = "https://rx-modules.github.io/bolt-expressions/"
readme = "README.md"
keywords = [
"beet",
"minecraft",
"bolt",
"mecha",
"expressions"
]
# include = ["FIXME/py.typed"]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
beet = ">=0.55.0"
mecha = ">=0.59.2"
nbtlib = "1.12.1"
bolt = ">=0.38"
frozendict = "^2.4.0"
bolt-control-flow = ">=0.2.0"
[tool.poetry.dev-dependencies]
black = "^22.12.0"
isort = "^5.11.4"
python-semantic-release = "^7.27.0"
mudkip = ">=0.5.1"
pytest-insta = ">=0.1.11"
rich = "^12.4.4"
pygments = {git = "https://github.com/rx-modules/pygments"}
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "tests bolt_expressions"# --doctest-modules"
# doctest_optionflags = "NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL ELLIPSIS"
[tool.black]
target-version = ["py310"]
include = '\.pyi?$'
[tool.isort]
profile = "black"
[tool.semantic_release]
branch = "main"
version_variable = ["bolt_expressions/__init__.py:__version__"]
version_toml = "pyproject.toml:tool.poetry.version"
major_on_zero = false
build_command = "poetry build && poetry run mudkip build --update-gh-pages --repository https://x-access-token:${GH_TOKEN}@github.com/rx-modules/bolt-expressions"
[tool.mudkip]
preset = "furo"
[tool.mudkip.override]
html_title = "bolt-expressions"
suppress_warnings = ["myst.header"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"