mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Add Python package metadata in package.json
Load as a list of classifiers in build step
This commit is contained in:
parent
0d5e8a1534
commit
3c5954e624
@ -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",
|
||||||
|
1
setup.py
1
setup.py
@ -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,
|
||||||
|
Loading…
Reference in New Issue
Block a user