-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·33 lines (30 loc) · 1.04 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
#!/usr/bin/env python
# Copyright 2011 Andrew Ryrie (amr66)
from distutils.core import setup
setup(name='django-pyroven',
description='A Django authentication backend for Ucam-WebAuth / Raven',
long_description=open('README.md').read(),
url='https://github.com/pyroven/django-pyroven',
version='0.9',
license='MIT',
author='Andrew Ryrie',
author_email='smb314159@gmail.com',
maintainer='Kristian Glass',
maintainer_email='pyroven@doismellburning.co.uk',
packages=['pyroven'],
install_requires=[
'Django<1.7',
'pyOpenSSL',
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
],
)