diff --git a/setup.py b/setup.py index 8ffe02c..d89393e 100644 --- a/setup.py +++ b/setup.py @@ -8,46 +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', - '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', - ] + "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", + ], )