Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/TI12-security/trunk/python/setup.py@4404
Revision 4404,
1.2 KB
checked in by pjkersha, 11 years ago
(diff) |
Updated contact e-mail address
|
-
Property svn:keywords set to
Id
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | """Distribution Utilities setup program for NDG Security Package |
---|
3 | |
---|
4 | NERC Data Grid Project |
---|
5 | """ |
---|
6 | __author__ = "P J Kershaw" |
---|
7 | __date__ = "24/04/06" |
---|
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 | __revision__ = "$Id$" |
---|
24 | |
---|
25 | setup( |
---|
26 | name = 'ndg_security', |
---|
27 | version = '0.9.3', |
---|
28 | description = 'NERC DataGrid Security Utilities', |
---|
29 | long_description = 'Software for securing NDG resources', |
---|
30 | author = 'Philip Kershaw', |
---|
31 | author_email = 'Philip.Kershaw@stfc.ac.uk', |
---|
32 | maintainer = 'Philip Kershaw', |
---|
33 | maintainer_email = 'Philip.Kershaw@stfc.ac.uk', |
---|
34 | url = 'http://proj.badc.rl.ac.uk/ndg/wiki/T12_Security', |
---|
35 | install_requires = ['ndg_security_client', 'ndg_security_server'], |
---|
36 | dependency_links = ["http://ndg.nerc.ac.uk/dist"], |
---|
37 | zip_safe = False |
---|
38 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.