# -*- mode: python; coding: utf-8 -*- # :Progetto: metapensiero.sphinx.patchdb # :Creato: sab 22 ago 2009 17:26:36 CEST # :Autore: Lele Gaifax # :Licenza: GNU General Public License version 3 or later # from setuptools import setup, find_packages def read(*rnames): from os.path import dirname, join text = open(join(dirname(__file__), *rnames)).read() return text setup( name='metapensiero.sphinx.patchdb', description="Extract scripts from a reST document and apply them in order.", long_description=read('README.rst'), version='0.3', author='Lele Gaifax', author_email='lele@metapensiero.it', packages=find_packages('src'), package_dir={'': 'src'}, namespace_packages=['metapensiero', 'metapensiero.sphinx'], install_requires=[ 'distribute', 'sqlalchemy', ], extras_require={'dev': ['docutils', 'pygments', 'sphinx']}, tests_require=['nose'], test_suite='nose.collector', entry_points=""" [console_scripts] patchdb = metapensiero.sphinx.patchdb.pup:main """, )