-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (52 loc) · 1.36 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
[tool.poetry]
name = "FIXME"
version = "0.0.0"
description = "FIXME"
authors = ["FIXME"]
license = "MIT"
homepage = "https://github.com/FIXME/FIXME"
repository = "https://github.com/FIXME/FIXME"
documentation = "https://FIXME.github.io/FIXME/"
readme = "README.md"
keywords = [
"beet",
"minecraft",
"FIXME",
"FIXME",
"FIXME"
]
include = ["FIXME/py.typed"]
[tool.poetry.dependencies]
python = "^3.8"
beet = ">=0.45.3"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^21.11b1"
isort = "^5.10.1"
python-semantic-release = "^7.22.0"
mudkip = "^0.4.14"
pytest-insta = "^0.1.10"
lectern = ">=0.18.1"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "tests FIXME --doctest-modules"
doctest_optionflags = "NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL ELLIPSIS"
[tool.black]
target-version = ["py38"]
include = '\.pyi?$'
[tool.isort]
profile = "black"
[tool.semantic_release]
branch = "main"
version_variable = ["FIXME/__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/FIXME/FIXME"
[tool.mudkip]
preset = "furo"
[tool.mudkip.override]
html_title = "FIXME"
suppress_warnings = ["myst.header"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"