from setuptools import setup from mdx_latex import __version__, __doc__ setup( name = 'markdown2latex', version = __version__, py_modules=['mdx_latex'], entry_points=''' [console_scripts] markdown2latex.py=mdx_latex:main ''', install_requires=[ 'Markdown>=1.5', ], # metadata for upload to PyPI author = 'Rufus Pollock (Open Knowledge Foundation)', url = 'http://www.okfn.org/okftext/', author_email = 'rufus [at] rufuspollock [dot] org', description = __doc__.split()[0], long_description = __doc__, license = 'MIT', keywords = 'latex markdown python', download_url = 'http://knowledgeforge.net/okftext/svn/trunk/python/mdx_latex/', classifiers = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules'], )