-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (61 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
71
72
[tool.poetry]
name = "iconoclast"
version = "3.1.0"
description = "Font Awesome Pro integration for Material for MkDocs"
authors = ["celsius narhwal <hello@celsiusnarhwal.dev>"]
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
decorator = "^5.1.1"
dict-deep = "^4.1.2"
halo = "^0.0.31"
importlib-metadata = "^6.6.0"
merge-args = "^0.1.5"
mkdocs = "^1.4"
path = "^16.6.0"
semver = "^3.0.0"
sgqlc = "^16.1"
yarl = "^1.9.2"
typer = { extras = ["all"], version = ">=0.9.0,<1.0" }
inquirerpy = "^0.3.4"
[tool.poetry.group.dev.dependencies]
doppler-env = "^0.3.1"
rich-tracebacks = "^1.2.1"
[tool.poetry.group.docs.dependencies]
cairosvg = "^2.7.0"
pillow = "^9.5.0"
poethepoet = "^0.19.0"
artwall = {git = "https://github.com/celsiusnarhwal/artwall"}
mkdocs-material = {git = "https://github.com/squidfunk/mkdocs-material-insiders"}
[tool.poetry.scripts]
iconoclast = "iconoclast.cli.cli:app"
icl = "iconoclast.cli.cli:app"
[tool.poetry.plugins."mkdocs.plugins"]
iconoclast = "iconoclast.plugins.main:IconoclastPlugin"
iconocards = "iconoclast.plugins.cards:IconocardsPlugin"
[tool.black]
target-version = ["py37"]
line-length = 88
[tool.isort]
profile = "black"
[tool.poe.tasks]
clear = "rm -rf site .cache"
format = { shell = "for hook in black prettier isort; do pre-commit run $hook --all-files; done" }
[tool.poe.tasks.docs]
shell = """
if $vercel; then
mkdocs build && vercel dev --cwd site --yes
else
mkdocs serve
fi
"""
env = { VERCEL_ORG_ID = "${VERCEL_ORG_ID}", VERCEL_PROJECT_ID = "${VERCEL_PROJECT_ID}" }
[[tool.poe.tasks.docs.args]]
name = "vercel"
options = ["--vercel"]
type = "boolean"
default = false
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"