1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-24 03:18:21 +02:00

Add Python package metadata in package.json

Load as a list of classifiers in build step
This commit is contained in:
raimon 2019-03-21 09:08:19 +09:00
parent 0d5e8a1534
commit 3c5954e624
2 changed files with 9 additions and 0 deletions

View File

@ -7,6 +7,14 @@
"documentation",
"theme"
],
"classifiers": [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Topic :: Documentation",
"Topic :: Text Processing :: Markup :: HTML"
],
"homepage": "https://squidfunk.github.io/mkdocs-material/",
"bugs": {
"url": "https://github.com/squidfunk/mkdocs-material/issues",

View File

@ -42,6 +42,7 @@ setup(
author = package["author"]["name"],
author_email = package["author"]["email"],
keywords = package["keywords"],
classifiers = package["classifiers"],
packages = find_packages(),
include_package_data = True,
install_requires = install_requires,