-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
27 lines (23 loc) · 972 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
[tool.poetry]
name = "aiforces-api"
version = "0.1.0"
description = ""
authors = ["Aleksandr Alekseev <https://github.com/aalekseevx>", "Danil Doroshin <ddddanil5555@gmail.com>", "Nikolay Rulev <https://github.com/AbsoluteNikola>"]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
sphinx_rtd_theme = "^0.4.3"
sphinx = "^2.3.1"
taskipy = "^1.1.2"
pygments = "^2.5.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.taskipy.tasks]
docs-html = "sphinx-build -b html docs/source docs/build/html"
docs-epub = "sphinx-build -b epub docs/source docs/build/epub"
docs-text = "sphinx-build -b text docs/source docs/build/text"
docs-man = "sphinx-build -b man docs/source docs/build/man"
docs-xml = "sphinx-build -b xml docs/source docs/build/xml"
docs-latex = "sphinx-build -b latex docs/source docs/build/latex"
docs-latexpdf = "sphinx-build -b latex docs/source docs/build/latexpdf; make -C docs/build/latexpdf"