Skip to content

Commit 9237e5a

Browse files
author
Bruno Alla
committed
Add classifiers to setup.py
So that it can benefit tools like https://github.com/brettcannon/caniusepython3
1 parent a392527 commit 9237e5a

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

setup.py

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,24 @@
1010
author_email='[email protected]',
1111
url='https://github.com/gizmag/django-fsm-log',
1212
packages=find_packages(),
13-
install_requires=['django>=1.6', 'django_fsm>=2', 'django_appconf']
13+
install_requires=['django>=1.6', 'django_fsm>=2', 'django_appconf'],
14+
classifiers=[
15+
'Development Status :: 5 - Production/Stable',
16+
'Environment :: Web Environment',
17+
'Framework :: Django',
18+
'Framework :: Django :: 1.6',
19+
'Framework :: Django :: 1.7',
20+
'Framework :: Django :: 1.8',
21+
'Intended Audience :: Developers',
22+
'License :: OSI Approved :: MIT License',
23+
'Operating System :: OS Independent',
24+
'Programming Language :: Python',
25+
'Programming Language :: Python :: 2',
26+
'Programming Language :: Python :: 2.7',
27+
'Programming Language :: Python :: 3',
28+
'Programming Language :: Python :: 3.3',
29+
'Programming Language :: Python :: 3.4',
30+
'Programming Language :: Python :: 3.5',
31+
'Topic :: Software Development :: Libraries :: Python Modules',
32+
]
1433
)

0 commit comments

Comments
 (0)