Index: spongenet/trunk/MANIFEST.in =================================================================== --- (revision ) +++ spongenet/trunk/MANIFEST.in (revision 347) @@ -1,0 +1,3 @@ +recursive-include spongenet/tests/expand *.zip *.ref *.xml +recursive-exclude spongenet/tests/expand/xml * +recursive-exclude spongenet/tests/expand/xmltest * Index: spongenet/trunk/setup.py =================================================================== --- (revision ) +++ spongenet/trunk/setup.py (revision 347) @@ -1,0 +1,40 @@ +#!/usr/bin/env python + +""" +Install the spongenet package. +""" + +import os +from distutils.core import setup + +setup(name='Spongenet', + version='1.0', + description='Sponge data processing utilities', + author='Chris Calloway', + author_email='cbc@chriscalloway.org', + url='http://trac.nccoos.org/dataproc/wiki/spongenet', + long_description='Utilities to expand directories of' \ + ' compressed sponge data files and' \ + ' combine them into one XML document.', + license='GPL2', + platforms='POSIX', + classifiers=['Development Status :: 3 - Alpha', + 'License :: OSI Approved' \ + ' :: GNU General Public License (GPL)', + 'Operating System :: POSIX', + ], + packages=['spongenet', + 'spongenet.tests', + 'spongenet.tests.expand', ], + package_data={'spongenet.tests.expand': [os.path.join('zip', + '*', + '*.zip',), + os.path.join('xmlref', + '*', + '*.ref',), + os.path.join('xmlref', + '*', + '*', + '*.xml',), ], + }, + )