forked from necaris/python3-openid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (55 loc) · 2.11 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import sys
from setuptools import setup
import openid
version = openid.__version__
install_requires = [
# Ensure that Python <= 3.3 uses an older version of `defusedxml`, which
# dropped compatibility in 0.5.0
'defusedxml' + ('<=0.4.1' if sys.version_info < (3, 4) else ''),
]
setup(
name='python3-openid',
version=version,
description='OpenID support for modern servers and consumers.',
long_description='''This is a set of Python packages to support use of
the OpenID decentralized identity system in your application, update to Python
3. Want to enable single sign-on for your web site? Use the openid.consumer
package. Want to run your own OpenID server? Check out openid.server.
Includes example code and support for a variety of storage back-ends.''',
url='http://github.com/necaris/python3-openid',
packages=[
'openid',
'openid.consumer',
'openid.server',
'openid.store',
'openid.yadis',
'openid.extensions',
'openid.extensions.draft',
],
# license specified by classifier
author='Rami Chowdhury',
author_email='rami.chowdhury@gmail.com',
maintainer='Rami Chowdhury',
maintainer_email='rami.chowdhury@gmail.com',
download_url=('http://github.com/necaris/python3-openid/tarball'
'/v{}'.format(version)),
install_requires=install_requires,
extras_require={
'mysql': ['mysql-connector-python'],
'postgresql': ['psycopg2'],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
("Topic :: Internet :: WWW/HTTP :: Dynamic Content :: "
"CGI Tools/Libraries"),
"Topic :: Software Development :: Libraries :: Python Modules",
("Topic :: System :: Systems Administration :: "
"Authentication/Directory"),
])