2019-06-28 16:57:23 +02:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "pelican"
|
2019-10-17 17:50:30 +00:00
|
|
|
version = "4.2.0"
|
2019-06-28 16:57:23 +02:00
|
|
|
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 :: 3",
|
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
|
"Programming Language :: Python :: 3.7",
|
2020-08-11 09:14:55 +02:00
|
|
|
"Programming Language :: Python :: 3.8",
|
2019-06-28 16:57:23 +02:00
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-11 09:14:55 +02:00
|
|
|
[tool.poetry.urls]
|
|
|
|
|
"Funding" = "https://donate.getpelican.com/"
|
|
|
|
|
"Tracker" = "https://github.com/getpelican/pelican/issues"
|
|
|
|
|
|
2019-06-28 16:57:23 +02:00
|
|
|
[tool.poetry.dependencies]
|
2020-04-23 12:57:04 -06:00
|
|
|
python = "^3.6"
|
2020-07-29 09:38:14 +02:00
|
|
|
blinker = "^1.4"
|
|
|
|
|
docutils = "^0.16"
|
2019-06-28 16:57:23 +02:00
|
|
|
feedgenerator = "^1.9"
|
2020-04-12 16:03:13 +02:00
|
|
|
jinja2 = "~2.11"
|
2020-04-12 15:52:01 +02:00
|
|
|
pygments = "~2.6.1"
|
2019-06-28 16:57:23 +02:00
|
|
|
python-dateutil = "^2.8"
|
2020-07-29 09:38:14 +02:00
|
|
|
pytz = "^2020.1"
|
|
|
|
|
unidecode = "^1.1"
|
|
|
|
|
markdown = {version = "~3.2.2", optional = true}
|
2019-06-28 16:57:23 +02:00
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2020-07-29 09:38:14 +02:00
|
|
|
BeautifulSoup4 = "^4.9"
|
2019-06-28 16:57:23 +02:00
|
|
|
lxml = "^4.3"
|
2020-07-29 09:38:14 +02:00
|
|
|
markdown = "~3.2.2"
|
2019-06-28 16:57:23 +02:00
|
|
|
typogrify = "^2.0"
|
2020-07-29 09:38:14 +02:00
|
|
|
sphinx = "^3.0"
|
|
|
|
|
sphinx_rtd_theme = "^0.5"
|
2019-11-12 08:36:22 -08:00
|
|
|
livereload = "^2.6"
|
2020-07-29 09:38:14 +02:00
|
|
|
pytest = "^6.0"
|
2019-11-12 07:45:36 -08:00
|
|
|
pytest-cov = "^2.8"
|
|
|
|
|
pytest-pythonpath = "^0.7.3"
|
2020-07-29 09:38:14 +02:00
|
|
|
pytest-sugar = "^0.9.4"
|
2020-04-13 08:55:29 +02:00
|
|
|
pytest-xdist = "^1.31"
|
2019-06-28 16:57:23 +02:00
|
|
|
tox = "^3.13"
|
2020-07-29 09:38:14 +02:00
|
|
|
flake8 = "^3.8"
|
2019-06-28 16:57:23 +02:00
|
|
|
flake8-import-order = "^0.18.1"
|
2019-11-09 08:40:26 -08:00
|
|
|
invoke = "^1.3"
|
2020-07-29 09:38:14 +02:00
|
|
|
isort = "^5.2"
|
2020-04-23 12:57:04 -06:00
|
|
|
black = {version = "^19.10b0", allow-prereleases = true}
|
2019-06-28 16:57:23 +02:00
|
|
|
|
2019-07-01 13:52:57 +02:00
|
|
|
[tool.poetry.extras]
|
|
|
|
|
markdown = ["markdown"]
|
|
|
|
|
|
2019-07-14 17:05:40 +02:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
|
pelican = "pelican.__main__:main"
|
|
|
|
|
|
2019-07-28 07:15:48 +02:00
|
|
|
[tool.autopub]
|
|
|
|
|
project-name = "Pelican"
|
|
|
|
|
git-username = "botpub"
|
|
|
|
|
git-email = "botpub@autopub.rocks"
|
2019-08-21 14:31:51 +02:00
|
|
|
changelog-file = "docs/changelog.rst"
|
|
|
|
|
changelog-header = "###############"
|
|
|
|
|
version-header = "="
|
2019-07-28 07:15:48 +02:00
|
|
|
version-strings = ["setup.py"]
|
|
|
|
|
build-system = "setuptools"
|
|
|
|
|
|
2019-06-28 16:57:23 +02:00
|
|
|
[build-system]
|
2019-07-28 07:09:40 +02:00
|
|
|
requires = ["setuptools >= 40.6.0", "wheel"]
|