1 | #!/usr/bin/env python |
---|
2 | """Distribution Utilities setup program for MyProxy Client Package |
---|
3 | |
---|
4 | NERC Data Grid Project |
---|
5 | """ |
---|
6 | __author__ = "P J Kershaw" |
---|
7 | __date__ = "12/12/08" |
---|
8 | __copyright__ = "(C) 2008 STFC & NERC" |
---|
9 | __license__ = \ |
---|
10 | """BSD-style license |
---|
11 | |
---|
12 | Software adapted from myproxy_logon. - For myproxy_logon see Access Grid |
---|
13 | Toolkit Public License (AGTPL): |
---|
14 | |
---|
15 | http://www-unix.mcs.anl.gov/fl/research/accessgrid/about/license.html |
---|
16 | |
---|
17 | This product includes software developed by and/or derived from the Access |
---|
18 | Grid Project (http://www.accessgrid.org) to which the U.S. Government retains |
---|
19 | certain rights.""" |
---|
20 | __contact__ = "Philip.Kershaw@stfc.ac.uk" |
---|
21 | __revision__ = '$Id$' |
---|
22 | |
---|
23 | # Bootstrap setuptools if necessary. |
---|
24 | from ez_setup import use_setuptools |
---|
25 | use_setuptools() |
---|
26 | |
---|
27 | from setuptools import setup, find_packages |
---|
28 | |
---|
29 | import os |
---|
30 | |
---|
31 | setup( |
---|
32 | name = 'MyProxyClient', |
---|
33 | version = '0.9.0', |
---|
34 | description = 'MyProxy Client', |
---|
35 | long_description = 'Pure Python implementation of MyProxy client interface', |
---|
36 | author = 'Philip Kershaw', |
---|
37 | author_email = 'Philip.Kershaw@stfc.ac.uk', |
---|
38 | maintainer = 'Philip Kershaw', |
---|
39 | maintainer_email = 'Philip.Kershaw@stfc.ac.uk', |
---|
40 | url = 'http://proj.badc.rl.ac.uk/ndg/wiki/Security', |
---|
41 | install_requires = ['M2Crypto'], |
---|
42 | license = __license__, |
---|
43 | test_suite = 'test', |
---|
44 | packages = find_packages(), |
---|
45 | package_data = { |
---|
46 | 'test': ['*.cfg', '*.conf', '*.crt', '*.key', 'README'] |
---|
47 | }, |
---|
48 | zip_safe = True |
---|
49 | ) |
---|