-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 875 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
25
from setuptools import setup
from pathlib import Path
setup(
name="markdown_sub_sup",
version="0.0.2",
license="LGPLv3",
url="https://github.com/alberic89/markdown_sub_sup",
description="A markdown python extension for use <sub> and <sup> tags with ^text^ and ~text~.",
author="alberic89",
author_email="[email protected]",
long_description=Path('README.md').read_text(),
long_description_content_type='text/markdown',
py_modules=['markdown_sub_sup'],
install_requires=['markdown>=3.0'],
classifiers=[
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML'
]
)