-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.88 KB
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
[tool.poetry]
name = "filetime_from_git"
version = "1.1.0"
description = "Pelican plugin for setting articles' and pages' date according to git commit."
readme = "README.rst"
authors = ["Zhang Cheng <StephenPCG@gmail.com>", "Tilman Blumenbach <tilman+git@ax86.net>", "Justin Mayer <entroP@gmail.com>", "Chris Scutcher <chris.scutcher@ninebysix.co.uk>", "Tristan Miller <psychonaut@nothingisreal.com>", "Tomas <tomas.herman@gmail.com>", "Talha Mansoor <talha131@gmail.com>", "Michel Voßkuhle <m.vosskuhle@gmail.com>", "Michael Budde <mbudde@gmail.com>", "Lucas Cimon <lucas.cimon@gmail.com>", "Kyle Barlow <kb@kylebarlow.com>", "Jari Karppinen <jari.p.karppinen@gmail.com>", "Chris Scutcher <chris@scutcher.uk>", "Aufar Gilbran <aufargilbran@gmail.com>", "Aetf <7437103@gmail.com>", "Tobias Schmidl <tobias@schmidl.dev>"]
keywords = ["pelican", "plugin"]
repository = "https://github.com/schtobia/filetime_from_git"
packages = [{ include = "pelican" }]
include = ["CHANGELOG.md", "README.rst", "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]
"Documentation" = "https://docs.getpelican.com/"
"Funding" = "https://donate.getpelican.com/"
"Source" = "https://github.com/schtobia/filetime_from_git"
"Tracker" = "https://github.com/schtobia/filetime_from_git/issues"
[tool.poetry.dependencies]
python = ">=3.10.0,<4.0.0"
gitpython = "^3.1.0"
[tool.poetry.extras]
markdown = ["markdown"]
[tool.poetry.group.dev.dependencies]
markdown = "^3.10.0"
pelican = "^4.11.0"
pylint = "^4.0.4"
pytest = "^9.0.2"
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"