|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=42", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "mkdocs-git-authors-plugin" |
| 7 | +description = "Mkdocs plugin to display git authors of a page" |
| 8 | +readme = { file = "README.md", content-type = "text/markdown" } |
| 9 | +license = {text = "MIT"} |
| 10 | +authors = [ |
| 11 | + { name = "Tim Vink", email = "[email protected]"} |
| 12 | +] |
| 13 | +keywords = ["mkdocs", "git", "contributors", "committers", "authors", "plugin"] |
| 14 | +urls = {Homepage = "https://github.com/timvink/mkdocs-git-authors-plugin"} |
| 15 | +version = "0.9.2" |
| 16 | +requires-python = ">=3.8" |
| 17 | +dependencies = ["mkdocs>=1.0"] |
| 18 | +classifiers = [ |
| 19 | + "Operating System :: OS Independent", |
| 20 | + "Programming Language :: Python", |
| 21 | + "Programming Language :: Python :: 3", |
| 22 | + "Programming Language :: Python :: 3.8", |
| 23 | + "Programming Language :: Python :: 3.9", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Programming Language :: Python :: 3.11", |
| 26 | + "Programming Language :: Python :: 3.12", |
| 27 | + "Programming Language :: Python :: 3.13", |
| 28 | + "Programming Language :: Python :: 3 :: Only", |
| 29 | + "License :: OSI Approved :: MIT License", |
| 30 | + "Topic :: Documentation", |
| 31 | + "Topic :: Text Processing", |
| 32 | +] |
| 33 | + |
| 34 | +[project.entry-points."mkdocs.plugins"] |
| 35 | +git-authors = "mkdocs_git_authors_plugin.plugin:GitAuthorsPlugin" |
| 36 | + |
| 37 | +[dependency-groups] |
| 38 | +dev = [ |
| 39 | + "click>=8.1.8", |
| 40 | + "codecov>=2.1.13", |
| 41 | + "gitpython>=3.1.44", |
| 42 | + "mkapi!=2.0.*", |
| 43 | + "mkdocs>=1.6.1", |
| 44 | + "mkdocs-git-revision-date-localized-plugin>=1.4.4", |
| 45 | + "mkdocs-macros-plugin>=1.3.7", |
| 46 | + "mkdocs-material>=9.6.7", |
| 47 | + "pytest>=8.3.5", |
| 48 | + "pytest-cov>=5.0.0", |
| 49 | +] |
0 commit comments