diff --git a/mdx_oembed/__init__.py b/mdx_oembed/__init__.py index f1cd610..1cc6cba 100644 --- a/mdx_oembed/__init__.py +++ b/mdx_oembed/__init__.py @@ -2,6 +2,9 @@ from mdx_oembed.extension import OEmbedExtension +VERSION = '0.1.3' + + def makeExtension(configs=None): if isinstance(configs, list): configs = dict(configs) diff --git a/setup.py b/setup.py index bc96e06..8514cd7 100644 --- a/setup.py +++ b/setup.py @@ -4,9 +4,12 @@ try: from setuptools import setup except ImportError: from distutils.core import setup +import mdx_oembed -VERSION = '0.1.2' +with open('README.markdown', 'r') as readme: + LONG_DESCRIPTION = readme.read() +VERSION = mdx_oembed.VERSION setup( @@ -14,6 +17,7 @@ setup( version=VERSION, description="Markdown extension to allow media embedding using the oEmbed " "standard.", + long_description=LONG_DESCRIPTION, author='Tanner Netterville', author_email='tannern@gmail.com', url='https://github.com/rennat/python-markdown-oembed',