-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 866 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 866 Bytes
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='rice_cas_backend',
version='0.1',
description='CAS backend for django_cas incorporating Rice''s LDAP directory',
author='Michael O''Connor',
author_email='michael@mcoconnor.net',
url='https://github.com/mcoconnor/rice_cas_backend',
license='MIT',
packages=['rice_cas_backend'],
requires=['django_cas'],
include_package_data=True,
zip_safe=False,
platforms = ['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: Other/Proprietary License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)