minor update version and setup.py

This commit is contained in:
J. Tanner Netterville 2014-07-22 17:20:21 -05:00
parent 1a7c62fb93
commit 001db644a5
2 changed files with 8 additions and 1 deletions

View file

@ -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)

View file

@ -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',