FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-openid/setup.py at master · eduapp/python-openid · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
eduapp
/
python-openid
Public
forked from
openid/python-openid
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-openid
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
46 lines (42 loc) · 1.64 KB
Breadcrumbs
python-openid
/
setup.py
Copy path
File metadata and controls
46 lines (42 loc) · 1.64 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
sys
import
os
from
distutils
.
core
import
setup
if
'sdist'
in
sys
.
argv
:
os
.
system
(
'./admin/makedoc'
)
version
=
'[library version:2.2.5]'
[
17
:
-
1
]
setup
(
name
=
'python-openid'
,
version
=
version
,
description
=
'OpenID support for servers and consumers.'
,
long_description
=
'''This is a set of Python packages to support use of
the OpenID decentralized identity system in your application. 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/openid/python-openid'
,
packages
=
[
'openid'
,
'openid.consumer'
,
'openid.server'
,
'openid.store'
,
'openid.yadis'
,
'openid.extensions'
,
'openid.extensions.draft'
,
],
# license specified by classifier.
# license=getLicense(),
author
=
'JanRain'
,
author_email
=
'openid@janrain.com'
,
download_url
=
'http://github.com/openid/python-openid/tarball/%s'
%
(
version
,),
classifiers
=
[
"Development Status :: 5 - Production/Stable"
,
"Environment :: Web Environment"
,
"Intended Audience :: Developers"
,
"License :: OSI Approved :: Apache Software License"
,
"Operating System :: POSIX"
,
"Programming Language :: Python"
,
"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"
,
],
)
Back
|
FazBrowse Home
|
New Git URL