-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (50 loc) · 1.27 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
[tool.poetry]
name = "mkdocs-juvix-plugin"
version = "0.4.9"
description = "MkDocs documentation with support for Juvix Markdown files"
authors = ["Jonathan Prieto-Cubides, and GitHub contributors"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "mkdocs_juvix", from = "." },
{ include = "src", from = "." },
]
[tool.poetry.scripts]
juvix-mkdocs = "src.cli:cli"
[tool.poetry.plugins."mkdocs.plugins"]
juvix = "mkdocs_juvix.main:JuvixPlugin"
# extra plugins
images = "mkdocs_juvix.images:ImagesPlugin"
todos = "mkdocs_juvix.todos:TodosPlugin"
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
mkdocs = "^1.6.1"
click = "^8.1.7"
semver = "^3.0.2"
mkdocs-material = "^9.5.46"
questionary = "^2.0.1"
python-dotenv = "^1.0.1"
bs4 = "^0.0.2"
toml = "^0.10.2"
pymdown-extensions = "^10.11.2"
fuzzywuzzy = "^0.18.0"
graphviz = "^0.20.3"
python-levenshtein = "^0.26.0"
intervaltree = "^3.1.0"
ncls = "^0.0.68"
tqdm = "^4.67.1"
trio = "^0.27.0"
rich = "^13.9.4"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.9"
pre-commit = "^4.0.1"
twine = "^5.1.1"
pytest = "^8.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.test.dependencies]
pytest = "*"
[tool.pytest.ini_options]
testpaths = ["test"]
addopts = "-v --tb=short"