-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 829 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='markdown-figcap',
version='0.1.1',
description=
'Extension for Python-Markdown to handle <figure> and <figcaption>.',
url='https://github.com/funk1d/markdown-figcap',
author='funkid',
author_email='fuunk1d@g.mailcom',
license='BSD License',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['markdown_figcap'],
install_requires=['Markdown>=3.0.1'],
classifiers=[
'Development Status :: 4 - Beta', 'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent', 'Programming Language :: Python',
'Topic :: Text Processing :: Markup :: HTML'
])