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 | |
---|
20 | setup( |
---|
21 | name = 'ndg_security_test', |
---|
22 | version = '1.5.5', |
---|
23 | description = 'NERC DataGrid Security Unit tests', |
---|
24 | long_description = 'Unit tests client - server side', |
---|
25 | author = 'Philip Kershaw', |
---|
26 | author_email = 'Philip.Kershaw@stfc.ac.uk', |
---|
27 | maintainer = 'Philip Kershaw', |
---|
28 | maintainer_email = 'Philip.Kershaw@stfc.ac.uk', |
---|
29 | url = 'http://proj.badc.rl.ac.uk/ndg/wiki/Security', |
---|
30 | license = 'BSD - See LICENCE file for details', |
---|
31 | install_requires = 'PyOpenSSL', # Required for paster to run under SSL |
---|
32 | packages = find_packages(), |
---|
33 | namespace_packages = ['ndg', 'ndg.security'], |
---|
34 | include_package_data = True, |
---|
35 | zip_safe = False |
---|
36 | ) |
---|