-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
63 lines (54 loc) · 1.69 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
[tool.poetry]
name = "pelican-more-categories"
version = "0.1.0"
description = "Enables nested categories and multiple categories per article"
authors = ["Oliver Urs Lenz <[email protected]>"]
license = "AGPL-3.0"
readme = "README.md"
keywords = ["pelican", "plugin"]
repository = "https://github.com/pelican-plugins/more-categories"
documentation = "https://docs.getpelican.com"
packages = [
{ include = "pelican" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Pelican",
"Framework :: Pelican :: Plugins",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.urls]
"Funding" = "https://donate.getpelican.com/"
"Tracker" = "https://github.com/pelican-plugins/more-categories/issues"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
pelican = ">=4.5"
markdown = {version = ">=3.2",optional = true}
# Avoid PyPI/Poetry problem: https://github.com/python-poetry/poetry/issues/9293
docutils = "!=0.21.post1"
[tool.poetry.dev-dependencies]
black = "^24"
flake8 = "^7.0"
invoke = "^2.0"
isort = "^5.13.0"
markdown = "^3.2"
pytest = "^6.0"
pytest-cov = "^2.8"
pytest-sugar = ">=1.0.0"
[tool.poetry.extras]
markdown = ["markdown"]
[tool.autopub]
project-name = "More Categories"
git-username = "botpub"
git-email = "[email protected]"
[tool.isort]
profile = "black"
# Sort imports within their section independent of the import type
force_sort_within_sections = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"