-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 975 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 975 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
from setuptools import setup
setup(
name='umd_python_cas',
version='1.0.1',
description='A python client to access the University of Maryland Central Authentication Services (CAS) remote instance.',
url='https://github.com/umd-python-cas/umd-python-cas',
author='Jacob (Coby) Winfield, Johan Vandegriff',
author_email='coby.winfield@gmail.com',
license='MIT',
packages=['umd_python_cas'],
install_requires=['urllib3',
'xmltodict',
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)