Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/TI12-security/trunk/python/setup.py@1337
Revision 1337,
653 bytes
checked in by pjkersha, 15 years ago
(diff) |
www/cgi-bin/idp.py: Security CGI for NDG Identity Provider
www/cgi-bin/sp.py: Security CGI for NDG Service Provider requesting credentials
NDG/SecurityCGI.py: continued re-working to split into two the two distinct components in the interface:
- Service Provider interface - requests credentials for a user
- Identity Provider interface - accepts requests from a Service Provider interface for credentials and interacts
with the user to retrieve them as required.
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | """Distribution Utilities setup program for NDG Security Package |
---|
4 | |
---|
5 | NERC Data Grid Project |
---|
6 | |
---|
7 | P J Kershaw 24/04/06 |
---|
8 | |
---|
9 | Copyright (C) 2006 CCLRC & NERC |
---|
10 | |
---|
11 | This software may be distributed under the terms of the Q Public License, |
---|
12 | version 1.0 or later. |
---|
13 | """ |
---|
14 | from distutils.core import setup |
---|
15 | import os |
---|
16 | |
---|
17 | setupKeys = \ |
---|
18 | { |
---|
19 | 'name': 'NDG-Security', |
---|
20 | 'version': 'Dev-PostAlpha', |
---|
21 | 'description': 'NERC DataGrid Security Utilities', |
---|
22 | 'author': 'P J Kershaw', |
---|
23 | 'author_email': 'P.J.Kershaw@rl.ac.uk', |
---|
24 | 'url': 'http://proj.badc.rl.ac.uk/ndg', |
---|
25 | 'packages': ['NDG'], |
---|
26 | } |
---|
27 | setup(**setupKeys) |
---|
Note: See
TracBrowser
for help on using the repository browser.