NCCOOS Trac Projects: Top | Web | Platforms | Processing | Viz | Sprints | Sandbox | (Wind)

root/spongenet/trunk/setup.py

Revision 350 (checked in by cbc, 14 years ago)

Create parse module.

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 directories of' \
17                        ' compressed sponge data files and' \
18                        ' combine them 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                ],
31       package_data={'spongenet.tests.expand': [os.path.join('zip',
32                                                             '*',
33                                                             '*.zip',),
34                                                os.path.join('xmlref',
35                                                             '*',
36                                                             '*.ref',),
37                                                os.path.join('xmlref',
38                                                             '*',
39                                                             '*',
40                                                             '*.xml',), ],
41                     'spongenet.tests.parse': [os.path.join('xml',
42                                                            '*',
43                                                            '*.xml',), ],
44                    },
45      )
Note: See TracBrowser for help on using the browser.