forked from simonw/django-queryset-transform
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (23 loc) · 877 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
from distutils.core import setup
setup(
name = 'django-queryset-decorator',
packages = ['queryset_decorator'],
version='0.0.2',
description='Experimental .decorate(fn) method for Django QuerySets, for '
'clever lazily evaluated optimisations.',
long_description=open('README.txt').read(),
author='Diederik van der Boor',
author_email='[email protected]',
url='https://github.com/vdboor/django-queryset-decorator',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)