python-markdown-oembed/setup.py

45 lines
1.1 KiB
Python
Raw Normal View History

2012-11-13 21:28:10 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
2014-07-23 21:02:57 +00:00
try:
with open('README.markdown', 'r') as readme:
LONG_DESCRIPTION = readme.read()
except Exception:
LONG_DESCRIPTION = None
2012-11-13 21:28:10 +00:00
setup(
name='python-markdown-oembed',
2015-04-20 04:44:21 +00:00
version='0.1.8',
description="Markdown extension to allow media embedding using the oEmbed "
"standard.",
2014-07-22 22:20:21 +00:00
long_description=LONG_DESCRIPTION,
2012-11-13 21:28:10 +00:00
author='Tanner Netterville',
author_email='tannern@gmail.com',
2012-11-13 21:37:35 +00:00
url='https://github.com/rennat/python-markdown-oembed',
license='Public Domain',
2012-11-13 21:28:10 +00:00
classifiers=(
"Development Status :: 4 - Beta",
"License :: Public Domain",
2012-11-13 21:28:10 +00:00
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
2012-11-13 21:28:10 +00:00
),
keywords='markdown oembed',
packages=[
'mdx_oembed',
],
install_requires=[
"python-oembed >= 0.2.1",
2015-04-03 05:51:34 +00:00
"Markdown >= 2.6.1",
2012-11-13 21:28:10 +00:00
],
test_suite='nose.collector',
tests_require=['WebTest >= 1.2', 'BeautifulSoup', 'pytidylib', 'poster']
)