Skip to content

Commit

Permalink
Merge branch 'master' into py310
Browse files Browse the repository at this point in the history
  • Loading branch information
tony authored Jan 5, 2022
2 parents 4cd9ae2 + 6716a42 commit 8c2606f
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
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="[email protected]",
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",
],
)

0 comments on commit 8c2606f

Please sign in to comment.