from setuptools import setup, find_packages setup( name='ndgCommon', version='0.1.1', packages=find_packages(), test_suite='nose.collector', install_requires=["ZSI", "feedparser", "httplib2"], # ZSI for Discovery Service Client package_data={'ndg': ['common/xmldb/indexing/*/*.xconf', 'common/xmldb/resources/*', 'common/xmldb/schema/*.xsd', 'common/xmldb/xquery/*.xq', 'common/xmldb/xquery/lib/*/*.xquery']}, namespace_packages = ['ndg', 'ndg.common'], author = 'Calum Byrom', license = 'LGPL', description = 'NDG utilities for metadata search and extraction', long_description=''' This is a package of utilities for manipulating metadata documents conforming to NERC DataGrid specifications, and held in eXist databases. Utilities to manipulate the NERC DataGrid public SOAP search interface are also included ''' )