forked from github/pelican
Add pyproject.toml and poetry.lock to project
This could facilitate publishing new versions of Pelican as well as make it easier for Poetry users to install Pelican via: `poetry install` Closes #2450
This commit is contained in:
parent
80540281bc
commit
216eec50fc
2 changed files with 604 additions and 0 deletions
57
pyproject.toml
Normal file
57
pyproject.toml
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
[tool.poetry]
|
||||
name = "pelican"
|
||||
version = "4.0.1"
|
||||
description = "Static site generator supporting Markdown and reStructuredText"
|
||||
authors = ["Justin Mayer <entrop@gmail.com>"]
|
||||
license = "AGPLv3"
|
||||
readme = "README.rst"
|
||||
keywords = ["static site generator", "static sites", "ssg"]
|
||||
|
||||
homepage = "https://getpelican.com"
|
||||
repository = "https://github.com/getpelican/pelican"
|
||||
documentation = "https://docs.getpelican.com"
|
||||
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Environment :: Console",
|
||||
"Framework :: Pelican",
|
||||
"License :: OSI Approved :: GNU Affero General Public License v3",
|
||||
"Operating System :: OS Independent",
|
||||
"Programming Language :: Python :: 2",
|
||||
"Programming Language :: Python :: 2.7",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: Implementation :: CPython",
|
||||
"Topic :: Internet :: WWW/HTTP",
|
||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||
]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "~2.7 || ^3.5"
|
||||
feedgenerator = "^1.9"
|
||||
jinja2 = "~2.10.1"
|
||||
pygments = "^2.4"
|
||||
pytz = "^2019.1"
|
||||
blinker = "^1.4"
|
||||
unidecode = "^1.1"
|
||||
python-dateutil = "^2.8"
|
||||
docutils = "^0.14"
|
||||
markdown = "~3.1.1"
|
||||
six = "^1.4"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
BeautifulSoup4 = "^4.7"
|
||||
lxml = "^4.3"
|
||||
typogrify = "^2.0"
|
||||
mock = "^3.0"
|
||||
sphinx = "=1.4.9"
|
||||
sphinx_rtd_theme = "^0.4.3"
|
||||
tox = "^3.13"
|
||||
flake8 = "^3.7"
|
||||
flake8-import-order = "^0.18.1"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry>=0.12"]
|
||||
build-backend = "poetry.masonry.api"
|
||||
Loading…
Add table
Add a link
Reference in a new issue