forked from aleray/mdx_del_ins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 803 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
from pathlib import Path
setup(
name='markdown_del_ins',
version='1.0.0',
author='Honza Javorek',
author_email='[email protected]',
description='Markdown extension to support the <del> and <ins> tags',
long_description=Path('README.md').read_text(),
long_description_content_type='text/markdown',
url='https://github.com/honzajavorek/markdown-del-ins',
py_modules=['markdown_del_ins'],
install_requires=['markdown>=2.0'],
classifiers=[
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML'
]
)