mirror of
https://github.com/Hopiu/python-markdown-oembed.git
synced 2026-03-16 22:10:24 +00:00
minor update version and setup.py
This commit is contained in:
parent
1a7c62fb93
commit
001db644a5
2 changed files with 8 additions and 1 deletions
|
|
@ -2,6 +2,9 @@
|
||||||
from mdx_oembed.extension import OEmbedExtension
|
from mdx_oembed.extension import OEmbedExtension
|
||||||
|
|
||||||
|
|
||||||
|
VERSION = '0.1.3'
|
||||||
|
|
||||||
|
|
||||||
def makeExtension(configs=None):
|
def makeExtension(configs=None):
|
||||||
if isinstance(configs, list):
|
if isinstance(configs, list):
|
||||||
configs = dict(configs)
|
configs = dict(configs)
|
||||||
|
|
|
||||||
6
setup.py
6
setup.py
|
|
@ -4,9 +4,12 @@ try:
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
except ImportError:
|
except ImportError:
|
||||||
from distutils.core import setup
|
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(
|
setup(
|
||||||
|
|
@ -14,6 +17,7 @@ setup(
|
||||||
version=VERSION,
|
version=VERSION,
|
||||||
description="Markdown extension to allow media embedding using the oEmbed "
|
description="Markdown extension to allow media embedding using the oEmbed "
|
||||||
"standard.",
|
"standard.",
|
||||||
|
long_description=LONG_DESCRIPTION,
|
||||||
author='Tanner Netterville',
|
author='Tanner Netterville',
|
||||||
author_email='tannern@gmail.com',
|
author_email='tannern@gmail.com',
|
||||||
url='https://github.com/rennat/python-markdown-oembed',
|
url='https://github.com/rennat/python-markdown-oembed',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue