-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
executable file
·34 lines (29 loc) · 1.18 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
#!/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',
'Topic :: Software Development :: Libraries :: Python Modules'
]
KEYWORDS = 'sorting sortable queryset sql pagination django'
setup(name='django-sortable',
version='0.3.1',
description='Flexible sorting for Django applications',
long_description=LONG_DESCRIPTION,
author='Drew Yeaton',
author_email='[email protected]',
url='http://github.com/drewyeaton/django-sortable',
packages=find_packages(),
platforms=['Platform Independent'],
license='GPLv3',
classifiers=CLASSIFIERS,
keywords=KEYWORDS,
requires = ['django'],
)