1 | #!/usr/bin/env python |
---|
2 | """Distribution Utilities setup program for NDG Security Test Package |
---|
3 | |
---|
4 | NERC DataGrid Project |
---|
5 | """ |
---|
6 | __author__ = "P J Kershaw" |
---|
7 | __date__ = "15/03/07" |
---|
8 | __copyright__ = "(C) 2009 Science and Technology Facilities Council" |
---|
9 | __license__ = "BSD - see LICENSE file in top-level directory" |
---|
10 | __contact__ = "Philip.Kershaw@stfc.ac.uk" |
---|
11 | __revision__ = '$Id$' |
---|
12 | |
---|
13 | # Bootstrap setuptools if necessary. |
---|
14 | from ez_setup import use_setuptools |
---|
15 | use_setuptools() |
---|
16 | from setuptools import setup, find_packages |
---|
17 | import os |
---|
18 | |
---|
19 | _longDescription = """\ |
---|
20 | Unit and integration tests package for NDG Security |
---|
21 | |
---|
22 | NDG Security is the security system for the UK Natural Environment Research |
---|
23 | Council funded NERC DataGrid. NDG Security has been developed to |
---|
24 | provide users with seamless federated access to secured resources across NDG |
---|
25 | participating organisations whilst at the same time providing an underlying |
---|
26 | system which is easy to deploy around organisation's pre-existing systems. |
---|
27 | |
---|
28 | Over the past two years the system has been developed in collaboration with the |
---|
29 | US DoE funded Earth System Grid project for the ESG Federation an infrastructure |
---|
30 | under development in support of CMIP5 (Coupled Model Intercomparison Project |
---|
31 | Phase 5), a framework for a co-ordinated set of climate model experiments |
---|
32 | which will input into the forthcoming 5th IPCC Assessment Report. |
---|
33 | |
---|
34 | NDG and ESG use a common access control architecture. OpenID and MyProxy are |
---|
35 | used to support single sign on for browser based and HTTP rich client based |
---|
36 | applications respectively. SAML is used for attribute query and authorisation |
---|
37 | decision interfaces. XACML is used as the policy engine. NDG Security has been |
---|
38 | re-engineered to use a filter based architecture based on WSGI enabling other |
---|
39 | Python WSGI based applications to be protected in a flexible manner without the |
---|
40 | need to modify application code. |
---|
41 | """ |
---|
42 | |
---|
43 | setup( |
---|
44 | name = 'ndg_security_test', |
---|
45 | version = '2.0.0', |
---|
46 | description = 'NERC DataGrid Security Unit and Integration tests', |
---|
47 | long_description = _longDescription, |
---|
48 | author = 'Philip Kershaw', |
---|
49 | author_email = 'Philip.Kershaw@stfc.ac.uk', |
---|
50 | maintainer = 'Philip Kershaw', |
---|
51 | maintainer_email = 'Philip.Kershaw@stfc.ac.uk', |
---|
52 | url = 'http://proj.badc.rl.ac.uk/ndg/wiki/Security', |
---|
53 | license = 'BSD - See LICENCE file for details', |
---|
54 | install_requires = 'PyOpenSSL', # Required for paster to run under SSL |
---|
55 | packages = find_packages(), |
---|
56 | namespace_packages = ['ndg', 'ndg.security'], |
---|
57 | include_package_data = True, |
---|
58 | zip_safe = False |
---|
59 | ) |
---|