From 6716a42b11aca4e5a825367ff527dcbd79585f8b Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Wed, 5 Jan 2022 17:40:57 -0600 Subject: [PATCH] Classifiers: Add 3.9 and 3.10 --- setup.py | 64 +++++++++++++++++++++++++++++--------------------------- 1 file changed, 33 insertions(+), 31 deletions(-) diff --git a/setup.py b/setup.py index 44f8dc2..d89393e 100644 --- a/setup.py +++ b/setup.py @@ -8,44 +8,46 @@ def read(*parts): setup( - name='django-robots', + name="django-robots", use_scm_version=True, setup_requires=["setuptools_scm"], long_description=read("README.rst"), - long_description_content_type='text/x-rst', - description='Robots exclusion application for Django, complementing Sitemaps.', - author='Jannis Leidel', - author_email='jannis@leidel.info', - python_requires='>=3.6', - url='https://github.com/jazzband/django-robots/', - packages=find_packages('src'), - package_dir={'': 'src'}, + long_description_content_type="text/x-rst", + description="Robots exclusion application for Django, complementing Sitemaps.", + author="Jannis Leidel", + author_email="jannis@leidel.info", + python_requires=">=3.6", + url="https://github.com/jazzband/django-robots/", + packages=find_packages("src"), + package_dir={"": "src"}, include_package_data=True, zip_safe=False, package_data={ - 'robots': [ - 'locale/*/LC_MESSAGES/*', - 'templates/robots/*.html', + "robots": [ + "locale/*/LC_MESSAGES/*", + "templates/robots/*.html", ], }, classifiers=[ - 'Development Status :: 5 - Production/Stable', - 'Environment :: Web Environment', - 'Framework :: Django', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: BSD License', - 'Operating System :: OS Independent', - 'Programming Language :: Python', - 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', - 'Topic :: Software Development', - 'Topic :: Software Development :: Libraries :: Application Frameworks', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', - 'Framework :: Django', - 'Framework :: Django :: 2.2', - 'Framework :: Django :: 3.1', - 'Framework :: Django :: 3.2', - 'Framework :: Django :: 4.0', - ] + "Development Status :: 5 - Production/Stable", + "Environment :: Web Environment", + "Framework :: Django", + "Intended Audience :: Developers", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Topic :: Internet :: WWW/HTTP :: Dynamic Content", + "Topic :: Software Development", + "Topic :: Software Development :: Libraries :: Application Frameworks", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Framework :: Django", + "Framework :: Django :: 2.2", + "Framework :: Django :: 3.1", + "Framework :: Django :: 3.2", + "Framework :: Django :: 4.0", + ], )