From 81a8378564acf00499bf9912a8f83af5fd29203c Mon Sep 17 00:00:00 2001 From: Tanner Netterville Date: Fri, 22 Apr 2016 00:17:51 -0500 Subject: [PATCH] version bump for 0.2.1 and wheel setup --- README.markdown | 4 ++++ mdx_oembed/__init__.py | 2 +- setup.cfg | 3 +++ setup.py | 6 +++++- 4 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 setup.cfg diff --git a/README.markdown b/README.markdown index b89e8ce..3038c61 100644 --- a/README.markdown +++ b/README.markdown @@ -28,6 +28,10 @@ A Public Domain work. Do as you wish. ## Changelog +### 0.2.1 + +- add Slideshare endpoint (thanks to [anantshri](https://github.com/anantshri)) + ### 0.2.0 - backwards incompatible changes diff --git a/mdx_oembed/__init__.py b/mdx_oembed/__init__.py index 9bac0d9..b783ea7 100644 --- a/mdx_oembed/__init__.py +++ b/mdx_oembed/__init__.py @@ -2,7 +2,7 @@ from mdx_oembed.extension import OEmbedExtension -VERSION = '0.2.0' +VERSION = '0.2.1' def makeExtension(**kwargs): diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b8a1655 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[bdist_wheel] +universal = 1 + diff --git a/setup.py b/setup.py index d4dc324..5535683 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ except Exception: setup( name='python-markdown-oembed', - version='0.2.0', + version='0.2.1', description="Markdown extension to allow media embedding using the oEmbed " "standard.", long_description=LONG_DESCRIPTION, @@ -28,6 +28,10 @@ setup( "License :: Public Domain", "Programming Language :: Python", "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',