Newer
Older
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
setup(
name='django-ucamlookup',
description='A Django module for the University of Cambridge Lookup service',
url='https://github.com/uisautomation/django-ucamlookup.git',
license='MIT',
author='Information Systems Group, University Information Services, University of Cambridge',
author_email='devops@uis.cam.ac.uk',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],