Skip to content

Commit b3a39b2

Browse files
authored
Merge pull request #39 from founders4schools/pypi-classifiers
Add classifiers to setup.py
2 parents e9956c6 + e44821e commit b3a39b2

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

setup.py

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,25 @@
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+
'Framework :: Django :: 1.9',
22+
'Intended Audience :: Developers',
23+
'License :: OSI Approved :: MIT License',
24+
'Operating System :: OS Independent',
25+
'Programming Language :: Python',
26+
'Programming Language :: Python :: 2',
27+
'Programming Language :: Python :: 2.7',
28+
'Programming Language :: Python :: 3',
29+
'Programming Language :: Python :: 3.3',
30+
'Programming Language :: Python :: 3.4',
31+
'Programming Language :: Python :: 3.5',
32+
'Topic :: Software Development :: Libraries :: Python Modules',
33+
]
1434
)

0 commit comments

Comments
 (0)