mirror of
https://github.com/Hopiu/python-markdown-oembed.git
synced 2026-03-16 22:10:24 +00:00
version bump for 0.2.1 and wheel setup
This commit is contained in:
parent
8d8dd3d21b
commit
81a8378564
4 changed files with 13 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
3
setup.cfg
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[bdist_wheel]
|
||||||
|
universal = 1
|
||||||
|
|
||||||
6
setup.py
6
setup.py
|
|
@ -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',
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue