Skip to content

Commit 6716a42

Browse files
committed
Classifiers: Add 3.9 and 3.10
1 parent 70da760 commit 6716a42

File tree

1 file changed

+33
-31
lines changed

1 file changed

+33
-31
lines changed

setup.py

Lines changed: 33 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -8,44 +8,46 @@ def read(*parts):
88

99

1010
setup(
11-
name='django-robots',
11+
name="django-robots",
1212
use_scm_version=True,
1313
setup_requires=["setuptools_scm"],
1414
long_description=read("README.rst"),
15-
long_description_content_type='text/x-rst',
16-
description='Robots exclusion application for Django, complementing Sitemaps.',
17-
author='Jannis Leidel',
18-
author_email='[email protected]',
19-
python_requires='>=3.6',
20-
url='https://github.com/jazzband/django-robots/',
21-
packages=find_packages('src'),
22-
package_dir={'': 'src'},
15+
long_description_content_type="text/x-rst",
16+
description="Robots exclusion application for Django, complementing Sitemaps.",
17+
author="Jannis Leidel",
18+
author_email="[email protected]",
19+
python_requires=">=3.6",
20+
url="https://github.com/jazzband/django-robots/",
21+
packages=find_packages("src"),
22+
package_dir={"": "src"},
2323
include_package_data=True,
2424
zip_safe=False,
2525
package_data={
26-
'robots': [
27-
'locale/*/LC_MESSAGES/*',
28-
'templates/robots/*.html',
26+
"robots": [
27+
"locale/*/LC_MESSAGES/*",
28+
"templates/robots/*.html",
2929
],
3030
},
3131
classifiers=[
32-
'Development Status :: 5 - Production/Stable',
33-
'Environment :: Web Environment',
34-
'Framework :: Django',
35-
'Intended Audience :: Developers',
36-
'License :: OSI Approved :: BSD License',
37-
'Operating System :: OS Independent',
38-
'Programming Language :: Python',
39-
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
40-
'Topic :: Software Development',
41-
'Topic :: Software Development :: Libraries :: Application Frameworks',
42-
'Programming Language :: Python :: 3.6',
43-
'Programming Language :: Python :: 3.7',
44-
'Programming Language :: Python :: 3.8',
45-
'Framework :: Django',
46-
'Framework :: Django :: 2.2',
47-
'Framework :: Django :: 3.1',
48-
'Framework :: Django :: 3.2',
49-
'Framework :: Django :: 4.0',
50-
]
32+
"Development Status :: 5 - Production/Stable",
33+
"Environment :: Web Environment",
34+
"Framework :: Django",
35+
"Intended Audience :: Developers",
36+
"License :: OSI Approved :: BSD License",
37+
"Operating System :: OS Independent",
38+
"Programming Language :: Python",
39+
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
40+
"Topic :: Software Development",
41+
"Topic :: Software Development :: Libraries :: Application Frameworks",
42+
"Programming Language :: Python :: 3.6",
43+
"Programming Language :: Python :: 3.7",
44+
"Programming Language :: Python :: 3.8",
45+
"Programming Language :: Python :: 3.9",
46+
"Programming Language :: Python :: 3.10",
47+
"Framework :: Django",
48+
"Framework :: Django :: 2.2",
49+
"Framework :: Django :: 3.1",
50+
"Framework :: Django :: 3.2",
51+
"Framework :: Django :: 4.0",
52+
],
5153
)

0 commit comments

Comments
 (0)