-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
76 lines (67 loc) · 2.06 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "pelican-seo"
version = "0.0.0"
description = "Pelican plugin to improve SEO (Search Engine Optimization) to reach top positions on search engines."
authors = ["Maëva Brunelles <contact@tremacorp.fr>"]
license = "AGPL-3.0"
readme = "README.md"
keywords = ["pelican", "plugin", "seo", "search", "optimization"]
repository = "https://github.com/pelican-plugins/seo"
packages = [
{ include = "pelican" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: Pelican",
"Framework :: Pelican :: Plugins",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.urls]
"Documentation" = "https://docs.getpelican.com/"
"Funding" = "https://donate.getpelican.com/"
"Tracker" = "https://github.com/pelican-plugins/seo/issues"
[tool.poetry.dependencies]
python = "^3.6"
pelican = "^4.2"
markdown = {version = "^3.2.2",optional = true}
beautifulsoup4 = "^4.9"
[tool.poetry.dev-dependencies]
black = {version = "^19.10b0",allow-prereleases = true}
flake8 = "^3.7"
flake8-black = "^0.1.0"
invoke = "^1.3"
isort = "^5.3"
livereload = "^2.6"
markdown = "^3.2.2"
pytest = "^6.0"
pytest-cov = "^2.7"
pytest-pythonpath = "^0.7.3"
pytest-sugar = "^0.9.4"
Werkzeug = "^1.0"
[tool.poetry.extras]
markdown = ["markdown"]
[tool.isort]
# Maintain compatibility with Black
combine_as_imports = true
force_grid_wrap = 0
include_trailing_comma = true
line_length = 88
multi_line_output = 3
# Sort imports within their section independent of the import type
force_sort_within_sections = true
known_third_party = [
"pytest",
]
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"