Add Pelican entry point to pyproject.toml

Otherwise, the `pelican` CLI command may not be available when installing
via Poetry.
This commit is contained in:
Justin Mayer 2019-07-14 17:05:40 +02:00
commit 3aacc114fd

View file

@ -56,6 +56,9 @@ flake8-import-order = "^0.18.1"
[tool.poetry.extras]
markdown = ["markdown"]
[tool.poetry.scripts]
pelican = "pelican.__main__:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"