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) 2007 STFC & NERC" |
---|
9 | __license__ = \ |
---|
10 | """This software may be distributed under the terms of the Q Public |
---|
11 | License, version 1.0 or later.""" |
---|
12 | __contact__ = "Philip.Kershaw@stfc.ac.uk" |
---|
13 | __revision__ = '$Id$' |
---|
14 | |
---|
15 | # Bootstrap setuptools if necessary. |
---|
16 | from ez_setup import use_setuptools |
---|
17 | use_setuptools() |
---|
18 | |
---|
19 | from setuptools import setup, find_packages |
---|
20 | |
---|
21 | import os |
---|
22 | |
---|
23 | setup( |
---|
24 | name = 'MyProxyClient', |
---|
25 | version = '0.9.0', |
---|
26 | description = 'MyProxy Client', |
---|
27 | long_description = 'Pure Python implementation of MyProxy client interface', |
---|
28 | author = 'Philip Kershaw', |
---|
29 | author_email = 'Philip.Kershaw@stfc.ac.uk', |
---|
30 | maintainer = 'Philip Kershaw', |
---|
31 | maintainer_email = 'Philip.Kershaw@stfc.ac.uk', |
---|
32 | url = 'http://proj.badc.rl.ac.uk/ndg/wiki/Security', |
---|
33 | install_requires = ['ndg_security_client', 'ndg_security_server'], |
---|
34 | dependency_links = ["http://ndg.nerc.ac.uk/dist"], |
---|
35 | zip_safe = True |
---|
36 | ) |
---|