-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
25 lines (24 loc) · 886 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
from distutils.core import setup
import os
setup(
name = 'django-queryset-transform',
packages = ['queryset_transform'],
version='0.0.2',
description='Experimental .transform(fn) method for Django QuerySets, for '
'clever lazily evaluated optimisations.',
long_description=open('README.txt').read(),
author='Simon Willison',
author_email='[email protected]',
url='http://github.com/simonw/django-queryset-transform',
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',
],
)