forked from clokep/django-querysetsequence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.33 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
36
37
38
39
import codecs
from setuptools import setup, find_packages
def long_description():
with codecs.open('README.rst', encoding='utf8') as f:
return f.read()
setup(
name='django-querysetsequence',
packages=find_packages(),
version='0.7.2',
description='Chain together multiple (disparate) QuerySets to treat them as a single QuerySet.',
long_description=long_description(),
author='Percipient Networks, LLC',
author_email='[email protected]',
url='https://github.com/percipient/django-querysetsequence',
download_url='https://github.com/percipient/django-querysetsequence',
keywords=['django', 'queryset', 'chain', 'multi', 'multiple', 'iterable'],
license='ISC',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Web Environment',
'Topic :: Internet',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
'License :: OSI Approved :: ISC License (ISCL)',
],
install_requires=[
'django>=1.8.0',
],
)