diff options
Diffstat (limited to 'dep/django-selectable/setup.py')
-rw-r--r-- | dep/django-selectable/setup.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dep/django-selectable/setup.py b/dep/django-selectable/setup.py index 77ed457..fc2aa04 100644 --- a/dep/django-selectable/setup.py +++ b/dep/django-selectable/setup.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python import os from setuptools import setup, find_packages @@ -23,22 +24,21 @@ setup( license='BSD', description=' '.join(__import__('selectable').__doc__.splitlines()).strip(), classifiers=[ - 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', + 'Framework :: Django', 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', - 'Framework :: Django', - 'Development Status :: 5 - Production/Stable', - 'Operating System :: OS Independent', + 'Programming Language :: Python :: 3.5', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], long_description=read_file('README.rst'), test_suite="runtests.runtests", - tests_require=['mock', ], - zip_safe=False, # because we're including media that Django needs + tests_require=['mock'], + zip_safe=False, # because we're including media that Django needs ) |