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", "documentation",
"theme" "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/", "homepage": "https://squidfunk.github.io/mkdocs-material/",
"bugs": { "bugs": {
"url": "https://github.com/squidfunk/mkdocs-material/issues", "url": "https://github.com/squidfunk/mkdocs-material/issues",

View File

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