-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (30 loc) · 1019 Bytes
/
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
[tool.poetry]
name = "hjk52knk"
version = "0.1.0"
description = "wedding invitation on sphinx-doc"
authors = ["rino0601 <rino0601.dev@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.6"
sphinx = {version = "^3.0.4", optional = true}
sphinx-rtd-theme = {version = "^0.4.3", optional = true}
sphinx-sitemap = {version = "^2.1.0", optional = true}
recommonmark = {version = "^0.6.0", optional = true}
sphinxcontrib-mermaid = {version = "^0.4.0", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^5.4.3"
autopep8 = "^1.5.3"
pylint = "^2.5.2"
doc8 = "^0.8.1"
taskipy = "^1.2.1"
pip = "^20.1.1"
[tool.poetry.extras]
docs = ["recommonmark", "sphinx", "sphinx-rtd-theme","sphinx-sitemap","sphinxcontrib-mermaid"]
[tool.taskipy.tasks]
test = "pytest"
lint = "pylint tests taskipy"
pre_docs = "rm -rf docs/_build"
docs = "sphinx-build -M html docs/ docs/_build"
post_docs = "cd docs/_build/html && python -m http.server 8000"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"