1
0
Fork 0
mirror of https://github.com/NixOS/nix.dev.git synced 2024-10-18 14:32:43 -04:00
nix.dev/pyproject.toml
Nejc Zupan 54ed4ce8ce Initial support for MyST
For now, we can have both .rst and .md files, so we can do the convertion
to Markdown iteratively.
2021-12-09 12:45:57 +00:00

26 lines
556 B
TOML

[tool.poetry]
name = "nix.dev"
version = "0.1.0"
description = ""
authors = ["Domen Kožar <domen@dev.si>"]
license = "CC BY-SA"
[tool.poetry.dependencies]
python = "^3.8"
livereload = "*"
myst-parser = {version = "*", extras = ["linkify"]}
sphinx = "*"
sphinx-book-theme = "*"
sphinx-copybutton = "*"
# remove when all .rst files have been converted to .md
rst-to-myst = {version = "*", extras = ["sphinx"]}
[tool.poetry.dev-dependencies]
black = "==21.12b0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"