source:
trunk/server/common/patches/python-authkit.patch
@
2591
Last change on this file since 2591 was 2591, checked in by achernya, 10 years ago | |
---|---|
File size: 1.1 KB |
-
setup.py
a b 39 39 install_requires = [ 40 40 "Paste>=1.4", "nose>=0.9.2", "PasteDeploy>=1.1", "Beaker>=1.1", 41 41 "PasteScript>=1.1", "python-openid>=2.1.1", 42 " elementtree>=1.2,<=1.3", "decorator>=2.1.0",42 "decorator>=2.1.0", 43 43 "WebOb>=0.9.3", 44 44 ], 45 45 extras_require = { -
authkit/authenticate/sso/api.py
a b 13 13 """ 14 14 import logging 15 15 16 from elementtree importElementTree16 import xml.etree.cElementTree as ElementTree 17 17 from paste.request import construct_url 18 18 from paste.util.converters import asbool 19 19 from paste.httpexceptions import HTTPNotFound, HTTPSeeOther, HTTPForbidden -
AuthKit.egg-info/requires.txt
a b 4 4 Beaker>=1.1 5 5 PasteScript>=1.1 6 6 python-openid>=2.1.1 7 elementtree>=1.2,<=1.38 7 decorator>=2.1.0 9 8 WebOb>=0.9.3
Note: See TracBrowser
for help on using the repository browser.