From 6e2857ca9a9341752d231479fe3cf6a3ef2e30d0 Mon Sep 17 00:00:00 2001 From: sgithuber <85906966+sgithuber@users.noreply.github.com> Date: Tue, 15 Jun 2021 19:31:47 +0900 Subject: [PATCH] Delete pyproject.toml --- pyproject.toml | 89 -------------------------------------------------- 1 file changed, 89 deletions(-) delete mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 99b1d5d4..00000000 --- a/pyproject.toml +++ /dev/null @@ -1,89 +0,0 @@ -[tool.poetry] -name = "pelican" -version = "4.6.0" -description = "Static site generator supporting Markdown and reStructuredText" -authors = ["Justin Mayer "] -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", - "Operating System :: OS Independent", - "Programming Language :: Python :: Implementation :: CPython", - "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System", - "Topic :: Internet :: WWW/HTTP :: Site Management", - "Topic :: Software Development :: Libraries :: Python Modules", - "Topic :: Text Processing :: Markup :: Markdown", - "Topic :: Text Processing :: Markup :: HTML", - "Topic :: Text Processing :: Markup :: reStructuredText", -] - -[tool.poetry.urls] -"Funding" = "https://donate.getpelican.com/" -"Tracker" = "https://github.com/getpelican/pelican/issues" - -[tool.poetry.dependencies] -python = "^3.6" -blinker = ">=1.4" -docutils = ">=0.16" -feedgenerator = ">=1.9" -jinja2 = ">=2.7" -pygments = ">=2.6" -python-dateutil = ">=2.8" -pytz = ">=2020.1" -rich = ">=10.1" -unidecode = ">=1.1" -markdown = {version = ">=3.1", optional = true} - -[tool.poetry.dev-dependencies] -BeautifulSoup4 = "^4.9" -jinja2 = "~2.11" -lxml = "^4.3" -markdown = "~3.3.4" -typogrify = "^2.0" -sphinx = "^3.0" -sphinx_rtd_theme = "^0.5" -livereload = "^2.6" -psutil = {version = "^5.7", optional = true} -pygments = "~2.8" -pytest = "^6.0" -pytest-cov = "^2.8" -pytest-pythonpath = "^0.7.3" -pytest-sugar = "^0.9.4" -pytest-xdist = "^2.0" -tox = {version = "^3.13", optional = true} -flake8 = "^3.8" -flake8-import-order = "^0.18.1" -invoke = "^1.3" -isort = "^5.2" -black = {version = "^19.10b0", allow-prereleases = true} - -[tool.poetry.extras] -markdown = ["markdown"] - -[tool.poetry.scripts] -pelican = "pelican.__main__:main" -pelican-import = "pelican.tools.pelican_import:main" -pelican-plugins = "pelican.plugins._utils:list_plugins" -pelican-quickstart = "pelican.tools.pelican_quickstart:main" -pelican-themes = "pelican.tools.pelican_themes:main" - -[tool.autopub] -project-name = "Pelican" -git-username = "botpub" -git-email = "botpub@autopub.rocks" -changelog-file = "docs/changelog.rst" -changelog-header = "###############" -version-header = "=" -version-strings = ["setup.py"] -build-system = "setuptools" - -[build-system] -requires = ["setuptools >= 40.6.0", "wheel"]