Merge pull request #102 from backstage/fix-setup-py

update setup.py
This commit is contained in:
Morgan Bentell 2023-05-12 14:01:10 +02:00 committed by GitHub
commit 882e6593f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,7 @@ import setuptools
setuptools.setup(
name='mkdocs-monorepo-plugin',
version='1.0.4',
version='1.0.5',
description='Plugin for adding monorepository support in Mkdocs.',
long_description="""
This introduces support for the !include syntax in mkdocs.yml, allowing you to import additional Mkdocs navigation.
@ -21,15 +21,15 @@ setuptools.setup(
'python-slugify>=4.0.1'
],
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.8'
'Programming Language :: Python :: 3.9'
'Programming Language :: Python :: 3.10'
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
packages=setuptools.find_packages(),