Revision 378
(checked in by cbc, 14 years ago)
|
Begin CSV query framework.
|
Line | |
---|
1 |
#!/usr/bin/env python |
---|
2 |
|
---|
3 |
""" |
---|
4 |
Install the spongenet package. |
---|
5 |
""" |
---|
6 |
|
---|
7 |
import os |
---|
8 |
from setuptools import setup |
---|
9 |
|
---|
10 |
setup(name='Spongenet', |
---|
11 |
version='1.0', |
---|
12 |
description='Sponge data processing utilities', |
---|
13 |
author='Chris Calloway', |
---|
14 |
author_email='cbc@chriscalloway.org', |
---|
15 |
url='http://trac.nccoos.org/dataproc/wiki/spongenet', |
---|
16 |
long_description='Utilities to expand and parse' \ |
---|
17 |
' a compressed sponge data file by' \ |
---|
18 |
' combining the contents into one XML document.', |
---|
19 |
license='GPL2', |
---|
20 |
platforms='POSIX', |
---|
21 |
classifiers=['Development Status :: 3 - Alpha', |
---|
22 |
'License :: OSI Approved' \ |
---|
23 |
' :: GNU General Public License (GPL)', |
---|
24 |
'Operating System :: POSIX', |
---|
25 |
], |
---|
26 |
packages=['spongenet', |
---|
27 |
'spongenet.tests', |
---|
28 |
'spongenet.tests.expand', |
---|
29 |
'spongenet.tests.parse', |
---|
30 |
'spongenet.tests.query', |
---|
31 |
], |
---|
32 |
package_data={'spongenet.tests.expand': [os.path.join('zip', |
---|
33 |
'*', |
---|
34 |
'*.zip',), |
---|
35 |
os.path.join('xmlref', |
---|
36 |
'*', |
---|
37 |
'*.ref',), |
---|
38 |
os.path.join('xmlref', |
---|
39 |
'*', |
---|
40 |
'*', |
---|
41 |
'*.xml',), ], |
---|
42 |
'spongenet.tests.parse': [os.path.join('xml', |
---|
43 |
'*', |
---|
44 |
'*.xml',), ], |
---|
45 |
'spongenet.tests.query': [os.path.join('nc', |
---|
46 |
'*.nc',), ], |
---|
47 |
}, |
---|
48 |
) |
---|