-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
82 lines (70 loc) · 2.1 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
77
78
79
80
81
82
[tool.poetry]
name = "pelican-markdown-it-reader"
version = "2.0.2"
description = "Reader plugin for Markdown-IT-py replacement"
authors = ["Gaige B. Paulsen <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["pelican", "plugin"]
repository = "https://github.com/gaige/markdown-it-reader"
documentation = "https://docs.getpelican.com"
packages = [
{ include = "pelican" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"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]
"Issue Tracker" = "https://github.com/gaige/markdown-it-reader/issues"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
pelican = ">=4.5"
Pygments = "^2.6"
markdown-it-py = ">=1.1,<4.0"
markdown = {version = "^3.2.2", optional = true}
mdit-py-plugins = ">=0.2.8,<0.5.0"
[tool.poetry.dev-dependencies]
black = {version = "^24.8"}
flake8 = "^5.0"
flake8-black = "^0.3"
invoke = "^2.2"
isort = "^5.4"
livereload = "^2.7"
markdown = "^3.7"
pytest = "^8.3.3"
pytest-cov = "^5.0"
pytest-pythonpath = "^0.7"
pytest-sugar = "^1.0"
Werkzeug = "^3.0"
[tool.poetry.extras]
markdown = ["markdown"]
[tool.autopub]
project-name = "Markdown-IT reader"
git-username = "gaige"
git-email = "[email protected]"
append-github-contributor = true
[tool.commitizen]
version_provider = "poetry"
tag_format = "v$major.$minor.$patch$prerelease"
update_changelog_on_bump = true
[tool.commitizen.customize]
# changelog_pattern = "^(feature|bug fix|docs)?(!)?"
[tool.isort]
# Maintain compatibility with Black
profile = "black"
multi_line_output = 3
# Sort imports within their section independent of the import type
force_sort_within_sections = true
# Designate "pelican" as separate import section
known_pelican = "pelican"
sections = "FUTURE,STDLIB,THIRDPARTY,PELICAN,FIRSTPARTY,LOCALFOLDER"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"