python-markdown-oembed/setup.py

48 lines
1.1 KiB
Python
Raw Permalink 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',
version='0.2.0',
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',
2015-04-21 18:03:05 +00:00
tests_require=[
'nose',
'mock'
2015-04-21 18:03:05 +00:00
]
2012-11-13 21:28:10 +00:00
)