-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
24 lines (22 loc) · 890 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-captions',
version='2.1.2',
description= 'Turn markdown images into captioned images using <figure>',
url='https://github.com/Evidlo/markdown_captions',
author='evidlo',
author_email='[email protected]',
license='GPL3',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['markdown_captions'],
keywords="markdown figures captions subtitles",
install_requires=['Markdown>=3.0.1'],
classifiers=[
'Development Status :: 4 - Beta', 'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent', 'Programming Language :: Python',
'Topic :: Text Processing :: Markup :: HTML'
])