setup.py 306 B

1234567891011
  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. setup(
  4. name='figureAltCaption',
  5. description='Extension for Python-Markdown to parse images with captions.',
  6. url='https://github.com/jdittrich/figureAltCaption',
  7. py_modules=['figureAltCaption'],
  8. install_requires=['Markdown>=2.0',],
  9. )