Changeset 4744
- Timestamp:
- 05/01/09 16:21:07 (12 years ago)
- Location:
- TI12-security/trunk/python
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/python/ndg.security.client/setup.py
r4680 r4744 22 22 import os 23 23 24 _longDescription = """\ 25 NDG Security is the security system for the UK Natural Environment Research 26 Council funded NERC DataGrid. NDG Security has been developed to 27 provide users with seamless access to secured resources across NDG 28 participating organisations whilst at the same time providing an underlying 29 system which is easy to deploy around organisation's pre-existing systems. 30 NDG Security is designed around a Role Based Access Control mechanism. Cross 31 organisational access to resources is enabled through bilateral trust 32 agreements between participating organisations expressed through a system for 33 single sign and role mapping. 34 35 NDG Security employs a web services based architecture enabling different 36 combinations of components to be deployed according to a participating site's 37 needs and requirements. Resources are secured using a system of Policy 38 Enforcement Point (Gatekeeper) and Policy Decision Point components. An 39 Attribute Authority provides a service to query a given users attributes used 40 for gaining access to resources. Session Manager and MyProxy services can be 41 used for management of credentials. NDG Security supports OpenID for Single 42 Sign On and can integrate into both web based and non-web based application 43 client interfaces. 44 """ 45 24 46 setup( 25 47 name = 'ndg_security_client', 26 48 version = '1.0.0', 27 description = 'NERC DataGrid Security Utilities',28 long_description = 'Software for securing NDG resources',49 description = 'NERC DataGrid Security Client side interface', 50 long_description = _longDescription, 29 51 author = 'Philip Kershaw', 30 52 author_email = 'Philip.Kershaw@stfc.ac.uk', -
TI12-security/trunk/python/ndg.security.common/setup.py
r4680 r4744 55 55 ] 56 56 57 _longDescription = """\ 58 NDG Security is the security system for the UK Natural Environment Research 59 Council funded NERC DataGrid. NDG Security has been developed to 60 provide users with seamless access to secured resources across NDG 61 participating organisations whilst at the same time providing an underlying 62 system which is easy to deploy around organisation's pre-existing systems. 63 NDG Security is designed around a Role Based Access Control mechanism. Cross 64 organisational access to resources is enabled through bilateral trust 65 agreements between participating organisations expressed through a system for 66 single sign and role mapping. 67 68 NDG Security employs a web services based architecture enabling different 69 combinations of components to be deployed according to a participating site's 70 needs and requirements. Resources are secured using a system of Policy 71 Enforcement Point (Gatekeeper) and Policy Decision Point components. An 72 Attribute Authority provides a service to query a given users attributes used 73 for gaining access to resources. Session Manager and MyProxy services can be 74 used for management of credentials. NDG Security supports OpenID for Single 75 Sign On and can integrate into both web based and non-web based application 76 client interfaces. 77 """ 57 78 58 79 setup( 59 80 name = 'ndg_security_common', 60 81 version = '1.0.0', 61 description = \62 '''NERC DataGrid Security virtual package containing common utilities used 63 by both server and client packages''',64 long_description = 'Software for securing NDG resources',82 description = 'NERC DataGrid Security package containing common ' 83 'utilities used by both server and client ' 84 'packages', 85 long_description = _longDescription, 65 86 author = 'Philip Kershaw', 66 87 author_email = 'Philip.Kershaw@stfc.ac.uk', -
TI12-security/trunk/python/ndg.security.server/setup.py
r4687 r4744 40 40 ndgsecurity_services=ndg.security.server.paster_templates.template:DefaultDeploymentTemplate 41 41 """ 42 43 _longDescription = """\ 44 NDG Security is the security system for the UK Natural Environment Research 45 Council funded NERC DataGrid. NDG Security has been developed to 46 provide users with seamless access to secured resources across NDG 47 participating organisations whilst at the same time providing an underlying 48 system which is easy to deploy around organisation's pre-existing systems. 49 NDG Security is designed around a Role Based Access Control mechanism. Cross 50 organisational access to resources is enabled through bilateral trust 51 agreements between participating organisations expressed through a system for 52 single sign and role mapping. 53 54 NDG Security employs a web services based architecture enabling different 55 combinations of components to be deployed according to a participating site's 56 needs and requirements. Resources are secured using a system of Policy 57 Enforcement Point (Gatekeeper) and Policy Decision Point components. An 58 Attribute Authority provides a service to query a given users attributes used 59 for gaining access to resources. Session Manager and MyProxy services can be 60 used for management of credentials. NDG Security supports OpenID for Single 61 Sign On and can integrate into both web based and non-web based application 62 client interfaces. 63 """ 64 42 65 setup( 43 66 name = 'ndg_security_server', 44 67 version = '1.0.0', 45 description = 'NERC DataGrid Security Services', 46 long_description = 'Server side component for securing NDG resources', 68 description = 'Server side components for running NERC DataGrid ' 69 'Security Services', 70 long_description = _longDescription, 47 71 author = 'Philip Kershaw', 48 72 author_email = 'Philip.Kershaw@stfc.ac.uk', … … 66 90 namespace_packages = ['ndg', 'ndg.security'], 67 91 package_data = { 68 'ndg.security.server.sso.sso': ['i18n/*/LC_MESSAGES/*.mo'], 69 'ndg.security.server.conf': ['*.xml','*.py','*.tac','*.cfg','*.conf'], 92 'ndg.security.server.sso.sso': [ 93 'i18n/*/LC_MESSAGES/*.mo' 94 ], 95 'ndg.security.server.conf': [ 96 '*.xml','*.py','*.tac','*.cfg','*.conf' 97 ], 70 98 'ndg.security.server.conf.certs': ['*.crt'], 71 99 'ndg.security.server.conf.certs.ca': ['*.crt'], … … 82 110 'ndg.security.server.sso.sso.templates.ndg.security': ['*.kid'], 83 111 'ndg.security.server.pylons': ['*.ini', '*.cfg', '*.txt'], 84 'ndg.security.server.pylons.container': ['public/*.*', 85 'public/layout/*.*', 86 'public/js/*.*', 87 'public/js/img/*.*', 88 'public/js/theme/*.*', 89 'public/js/yui/*.*'], 90 'ndg.security.server.pylons.container.templates.ndg.security': ['*.kid']}, 112 'ndg.security.server.pylons.container': [ 113 'public/*.*', 114 'public/layout/*.*', 115 'public/js/*.*', 116 'public/js/img/*.*', 117 'public/js/theme/*.*', 118 'public/js/yui/*.*'], 119 'ndg.security.server.pylons.container.templates.ndg.security': [ 120 '*.kid' 121 ] 122 }, 91 123 entry_points = _entryPoints, 92 124 test_suite = 'ndg.security.test', -
TI12-security/trunk/python/setup.py
r4680 r4744 21 21 import os 22 22 23 _longDescription = """\ 24 NDG Security is the security system for the UK Natural Environment Research 25 Council funded NERC DataGrid. NDG Security has been developed to 26 provide users with seamless access to secured resources across NDG 27 participating organisations whilst at the same time providing an underlying 28 system which is easy to deploy around organisation's pre-existing systems. 29 NDG Security is designed around a Role Based Access Control mechanism. Cross 30 organisational access to resources is enabled through bilateral trust 31 agreements between participating organisations expressed through a system for 32 single sign and role mapping. 33 34 NDG Security employs a web services based architecture enabling different 35 combinations of components to be deployed according to a participating site's 36 needs and requirements. Resources are secured using a system of Policy 37 Enforcement Point (Gatekeeper) and Policy Decision Point components. An 38 Attribute Authority provides a service to query a given users attributes used 39 for gaining access to resources. Session Manager and MyProxy services can be 40 used for management of credentials. NDG Security supports OpenID for Single 41 Sign On and can integrate into both web based and non-web based application 42 client interfaces. 43 """ 23 44 setup( 24 45 name = 'ndg_security', 25 46 version = '1.0.0', 26 47 description = 'NERC DataGrid Security Utilities', 27 long_description = 'Software for securing NDG resources',48 long_description = _longDescription, 28 49 author = 'Philip Kershaw', 29 50 author_email = 'Philip.Kershaw@stfc.ac.uk',
Note: See TracChangeset
for help on using the changeset viewer.