From 3c5954e6240f367a919534b7628aac282083df0b Mon Sep 17 00:00:00 2001 From: raimon Date: Thu, 21 Mar 2019 09:08:19 +0900 Subject: [PATCH] Add Python package metadata in package.json Load as a list of classifiers in build step --- package.json | 8 ++++++++ setup.py | 1 + 2 files changed, 9 insertions(+) diff --git a/package.json b/package.json index 7da914664..7f6e00cea 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/setup.py b/setup.py index e72f5aadd..6e6cc7543 100644 --- a/setup.py +++ b/setup.py @@ -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,