-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 858 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_escaped",
version="0.0.1",
license="LGPLv3",
url="https://github.com/alberic89/markdown_escaped",
description="A python markdown extension for add HTML escaped symbols support",
author="alberic89",
author_email="alberic89@gmx.com",
long_description=Path('README.md').read_text(),
long_description_content_type='text/markdown',
py_modules=['markdown_escaped'],
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'
]
)