From 9e979fbb815c44e1c87ba82b2d95f667092fca72 Mon Sep 17 00:00:00 2001 From: "J. Tanner Netterville" Date: Tue, 13 Nov 2012 16:33:36 -0600 Subject: [PATCH] updated setup.py and added manifest for readme and license file --- README.markdown | 4 ++++ setup.py | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/README.markdown b/README.markdown index 906bca1..3fcfb3d 100644 --- a/README.markdown +++ b/README.markdown @@ -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. diff --git a/setup.py b/setup.py index fb35b9a..f8741b6 100644 --- a/setup.py +++ b/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',