forked from bulkan/django-sqlpaginator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 940 Bytes
/
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
from setuptools import setup
__version__ = ''
execfile('sqlpaginator/version.py')
description = '''django app that does pagination and ordering using raw
sql on a Model. It has the same API as the django.core.pagination.Paginator'''
setup(
name='django-sqlpaginator',
packages=['sqlpaginator'],
version=__version__,
description=description,
author='Bulkan Evcimen',
author_email='[email protected]',
url='https://github.com/bulkan/django-sqlpaginator',
#dependency_links=["https://github.com/andialbrecht/sqlparse/tarball/master"],
install_requires=[
#'distribute',
'sqlparse'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'
]
)