mirror of
https://github.com/Hopiu/python-markdown-oembed.git
synced 2026-03-16 22:10:24 +00:00
44 lines
1.1 KiB
Python
44 lines
1.1 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
|
|
try:
|
|
with open('README.markdown', 'r') as readme:
|
|
LONG_DESCRIPTION = readme.read()
|
|
except Exception:
|
|
LONG_DESCRIPTION = None
|
|
|
|
|
|
setup(
|
|
name='python-markdown-oembed',
|
|
version='0.1.4',
|
|
description="Markdown extension to allow media embedding using the oEmbed "
|
|
"standard.",
|
|
long_description=LONG_DESCRIPTION,
|
|
author='Tanner Netterville',
|
|
author_email='tannern@gmail.com',
|
|
url='https://github.com/rennat/python-markdown-oembed',
|
|
license='Public Domain',
|
|
classifiers=(
|
|
"Development Status :: 4 - Beta",
|
|
"License :: Public Domain",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 2.7",
|
|
),
|
|
keywords='markdown oembed',
|
|
|
|
packages=[
|
|
'mdx_oembed',
|
|
],
|
|
install_requires=[
|
|
"python-oembed >= 0.2.1",
|
|
"Markdown >= 2.2.0",
|
|
],
|
|
|
|
test_suite='nose.collector',
|
|
tests_require=['WebTest >= 1.2', 'BeautifulSoup', 'pytidylib', 'poster']
|
|
)
|