version bump for 0.2.1 and wheel setup

This commit is contained in:
Tanner Netterville 2016-04-22 00:17:51 -05:00
parent 8d8dd3d21b
commit 81a8378564
4 changed files with 13 additions and 2 deletions

View file

@ -28,6 +28,10 @@ A Public Domain work. Do as you wish.
## Changelog ## Changelog
### 0.2.1
- add Slideshare endpoint (thanks to [anantshri](https://github.com/anantshri))
### 0.2.0 ### 0.2.0
- backwards incompatible changes - backwards incompatible changes

View file

@ -2,7 +2,7 @@
from mdx_oembed.extension import OEmbedExtension from mdx_oembed.extension import OEmbedExtension
VERSION = '0.2.0' VERSION = '0.2.1'
def makeExtension(**kwargs): def makeExtension(**kwargs):

3
setup.cfg Normal file
View file

@ -0,0 +1,3 @@
[bdist_wheel]
universal = 1

View file

@ -15,7 +15,7 @@ except Exception:
setup( setup(
name='python-markdown-oembed', name='python-markdown-oembed',
version='0.2.0', version='0.2.1',
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, long_description=LONG_DESCRIPTION,
@ -28,6 +28,10 @@ setup(
"License :: Public Domain", "License :: Public Domain",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
), ),
keywords='markdown oembed', keywords='markdown oembed',