-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (63 loc) · 1.98 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
[tool.poetry]
authors = ["Fabian Köhler <[email protected]>"]
description = "Highlight syntax using Prism.js, Highlight.js or Pygments"
documentation = "https://docs.getpelican.com"
keywords = ["pelican", "plugin"]
license = "AGPL-3.0"
name = "pelican-syntax-highlighting"
packages = [{include = "pelican"}]
readme = "README.md"
repository = "https://github.com/f-koehler/pelican-syntax-highlighting"
version = "0.4.2"
classifiers = [
"Development Status :: 1 - Planning",
"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/"
"Issue Tracker" = "https://github.com/f-koehler/pelican-syntax-highlighting/issues"
[tool.poetry.dependencies]
markdown = {version = ">=3.2", optional = true}
pelican = ">=4.5"
python = ">=3.10,<4.0"
[tool.poetry.dev-dependencies]
Werkzeug = "^3.0.0"
black = {version = "^24.0.0", allow-prereleases = true}
flake8 = "^7.0.0"
flake8-black = "^0.3"
invoke = "^2.0"
isort = "^6.0.0"
livereload = "^2.6"
markdown = "^3.2"
mypy = "^1.0"
pre-commit = "^4.0.0"
pytest = "^8.0.0"
pytest-cov = "^5.0.0"
pytest-pythonpath = "^0.7"
pytest-sugar = "^1.0.0"
types-Markdown = "^3.3.6"
[tool.poetry.extras]
markdown = ["markdown"]
[tool.autopub]
append-github-contributor = true
git-email = "[email protected]"
git-username = "botpub"
project-name = "Syntax Highlighting"
[tool.isort]
# Maintain compatibility with Black
multi_line_output = 3
profile = "black"
# 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]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]