From 001db644a5351d7621f0a440a555c330b239e9c5 Mon Sep 17 00:00:00 2001 From: "J. Tanner Netterville" Date: Tue, 22 Jul 2014 17:20:21 -0500 Subject: [PATCH] minor update version and setup.py --- mdx_oembed/__init__.py | 3 +++ setup.py | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) 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',