mirror of
https://github.com/Hopiu/python-markdown-oembed.git
synced 2026-03-16 22:10:24 +00:00
updated setup.py and added manifest for readme and license file
This commit is contained in:
parent
905980d527
commit
9e979fbb81
2 changed files with 10 additions and 6 deletions
|
|
@ -19,3 +19,7 @@ Markdown extension to allow media embedding using the oEmbed standard.
|
|||
- [Markdown](http://daringfireball.net/projects/markdown/)
|
||||
- [oEmbed](http://www.oembed.com/)
|
||||
- [python-oembed](https://github.com/abarmat/python-oembed)
|
||||
|
||||
## License
|
||||
|
||||
A Public Domain work. Do as you wish.
|
||||
|
|
|
|||
12
setup.py
12
setup.py
|
|
@ -6,24 +6,24 @@ except ImportError:
|
|||
from distutils.core import setup
|
||||
|
||||
|
||||
VERSION = '0.1'
|
||||
VERSION = '0.1.1a1'
|
||||
|
||||
|
||||
setup(
|
||||
name='python-markdown-oembed',
|
||||
version=VERSION,
|
||||
description="",
|
||||
description="Markdown extension to allow media embedding using the oEmbed "
|
||||
"standard.",
|
||||
long_description=open('README.markdown').read(),
|
||||
author='Tanner Netterville',
|
||||
author_email='tannern@gmail.com',
|
||||
url='https://github.com/rennat/python-markdown-oembed',
|
||||
license='MIT',
|
||||
license='Public Domain',
|
||||
classifiers=(
|
||||
"Development Status :: 4 - Beta",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"License :: Public Domain",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 2.5",
|
||||
"Programming Language :: Python :: 2.6",
|
||||
"Programming Language :: Python :: 2.7",
|
||||
),
|
||||
keywords='markdown oembed',
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue