1 | #!/usr/bin/env python |
---|
2 | """Distribution Utilities setup program for MyProxy Client |
---|
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 | For myproxy_logon see Access Grid Toolkit Public License (AGTPL): |
---|
13 | |
---|
14 | http://www-unix.mcs.anl.gov/fl/research/accessgrid/about/license.html |
---|
15 | |
---|
16 | This product includes software developed by and/or derived from the Access |
---|
17 | Grid Project (http://www.accessgrid.org) to which the U.S. Government retains |
---|
18 | certain rights.""" |
---|
19 | __contact__ = "Philip.Kershaw@stfc.ac.uk" |
---|
20 | __revision__ = '$Id$' |
---|
21 | |
---|
22 | # Bootstrap setuptools if necessary. |
---|
23 | from ez_setup import use_setuptools |
---|
24 | use_setuptools() |
---|
25 | |
---|
26 | from setuptools import setup, find_packages |
---|
27 | |
---|
28 | import os |
---|
29 | |
---|
30 | setup( |
---|
31 | name = 'MyProxyClient', |
---|
32 | version = '0.9.0', |
---|
33 | description = 'MyProxy Client', |
---|
34 | long_description = 'Pure Python implementation of MyProxy client interface', |
---|
35 | author = 'Philip Kershaw', |
---|
36 | author_email = 'Philip.Kershaw@stfc.ac.uk', |
---|
37 | maintainer = 'Philip Kershaw', |
---|
38 | maintainer_email = 'Philip.Kershaw@stfc.ac.uk', |
---|
39 | url = 'http://proj.badc.rl.ac.uk/ndg/wiki/Security', |
---|
40 | install_requires = ['ndg_security_client', 'ndg_security_server'], |
---|
41 | dependency_links = ["http://ndg.nerc.ac.uk/dist"], |
---|
42 | license = __license__, |
---|
43 | zip_safe = True |
---|
44 | ) |
---|