Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/TI12-security/trunk/python/setup.py@1308
Rev | Line | |
---|
[817] | 1 | #!/usr/bin/env python |
---|
| 2 | |
---|
| 3 | """Distribution Utilities setup program for NDG Security Package |
---|
| 4 | |
---|
| 5 | NERC Data Grid Project |
---|
| 6 | |
---|
| 7 | P J Kershaw 24/04/06 |
---|
| 8 | |
---|
| 9 | Copyright (C) 2006 CCLRC & NERC |
---|
| 10 | |
---|
| 11 | This software may be distributed under the terms of the Q Public License, |
---|
| 12 | version 1.0 or later. |
---|
| 13 | """ |
---|
| 14 | from distutils.core import setup |
---|
| 15 | import os |
---|
| 16 | |
---|
| 17 | setupKeys = \ |
---|
| 18 | { |
---|
| 19 | 'name': 'NDG-Security', |
---|
[1308] | 20 | 'version': '0.72', |
---|
[817] | 21 | 'description': 'NERC DataGrid Security Utilities', |
---|
| 22 | 'author': 'P J Kershaw', |
---|
| 23 | 'author_email': 'P.J.Kershaw@rl.ac.uk', |
---|
| 24 | 'url': 'http://proj.badc.rl.ac.uk/ndg', |
---|
| 25 | 'packages': ['NDG'], |
---|
| 26 | } |
---|
[1257] | 27 | setup(**setupKeys) |
---|
Note: See
TracBrowser
for help on using the repository browser.