forked from drewyeaton/django-sortable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·35 lines (30 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
from setuptools import setup, find_packages
LONG_DESCRIPTION = '''A flexible way to handle sorting within a complex Django application.'''
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Framework :: Django',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules']
KEYWORDS = 'sorting sortable queryset sql pagination django'
setup(name='django-sortable2',
version='0.3.5',
description='Flexible sorting for Django applications',
long_description=LONG_DESCRIPTION,
author='Drew Yeaton, Jason Otero',
author_email='[email protected]',
url='https://github.com/deathnfudge/django-sortable2',
packages=find_packages(),
platforms=['Platform Independent'],
license='GPLv3',
classifiers=CLASSIFIERS,
keywords=KEYWORDS,
requires=['django'],
)