-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·45 lines (40 loc) · 1.37 KB
/
setup.py
File metadata and controls
executable file
·45 lines (40 loc) · 1.37 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
from __future__ import absolute_import
import codecs
from setuptools import setup
with codecs.open('README.rst', encoding='utf-8') as f:
readme = f.read()
setup(
author='Ming Chen',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP',
],
python_requires=">=3.8",
install_requires=[
'six>=1.10.0',
'requests>=2.11.1',
'lxml>=3.4',
],
description='Python CAS client library',
keywords=['cas', 'cas2', 'cas3', 'client', 'sso', 'single sign-on', 'authentication', 'auth'],
license='MIT',
long_description=readme,
name='python-cas',
py_modules=['cas'],
url='https://github.com/python-cas/python-cas',
download_url ='https://github.com/python-cas/python-cas/releases',
version='1.6.0',
)