remove silly import from setup.py

This commit is contained in:
J. Tanner Netterville 2014-07-23 16:02:57 -05:00
parent 001db644a5
commit 469e696a95
2 changed files with 7 additions and 6 deletions

View file

@ -2,7 +2,7 @@
from mdx_oembed.extension import OEmbedExtension
VERSION = '0.1.3'
VERSION = '0.1.4'
def makeExtension(configs=None):

View file

@ -4,17 +4,18 @@ try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import mdx_oembed
try:
with open('README.markdown', 'r') as readme:
LONG_DESCRIPTION = readme.read()
VERSION = mdx_oembed.VERSION
except Exception:
LONG_DESCRIPTION = None
setup(
name='python-markdown-oembed',
version=VERSION,
version='0.1.4',
description="Markdown extension to allow media embedding using the oEmbed "
"standard.",
long_description=LONG_DESCRIPTION,