updated setup.py and added manifest for readme and license file

This commit is contained in:
J. Tanner Netterville 2012-11-13 16:33:36 -06:00
parent 905980d527
commit 9e979fbb81
2 changed files with 10 additions and 6 deletions

View file

@ -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.

View file

@ -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',