Skip to content

Commit aef2c09

Browse files
committed
Added missing classifiers to the setup.py
I have added extra topics: ``` + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ``` Added information about framework: ``` 'Framework :: Django', 'Framework :: Django :: 1.6', 'Framework :: Django :: 1.7', 'Framework :: Django :: 1.8', 'Framework :: Django :: 1.9', ``` And `python` versions: ``` 'Programming Language :: Python :: 2.7', ... 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: Implementation :: PyPy', ``` I have also sorted the classifiers alphabetically.
1 parent 5805929 commit aef2c09

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

setup.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,25 @@
2323
install_requires=install_requires,
2424
include_package_data=True,
2525
classifiers=[
26+
'Development Status :: 5 - Production/Stable',
2627
'Environment :: Web Environment',
28+
'Framework :: Django',
29+
'Framework :: Django :: 1.6',
30+
'Framework :: Django :: 1.7',
31+
'Framework :: Django :: 1.8',
32+
'Framework :: Django :: 1.9',
2733
'Intended Audience :: Developers',
28-
'Development Status :: 5 - Production/Stable',
2934
'License :: OSI Approved :: MIT License',
3035
'Operating System :: OS Independent',
3136
'Programming Language :: Python',
37+
'Programming Language :: Python :: 2.7',
3238
'Programming Language :: Python :: 3',
39+
'Programming Language :: Python :: 3.4',
40+
'Programming Language :: Python :: 3.5',
41+
'Programming Language :: Python :: Implementation :: PyPy',
3342
'Topic :: Utilities',
43+
'Topic :: Software Development :: Libraries :: Python Modules',
44+
'Topic :: Internet :: WWW/HTTP',
45+
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
3446
]
3547
)

0 commit comments

Comments
 (0)