forked from exaroth/mdx_custom_span_class
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (22 loc) · 809 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
#! /usr/bin/env python
from setuptools import setup
setup(
name='mdx_customspanclass',
version='1.1.1',
author='Konrad Wasowicz',
author_email='[email protected]',
description='Markdown extension which allows inserting span elements with custom class',
url='https://github.com/exaroth/mdx_custom_span_class',
py_modules=['mdx_custom_span_class'],
install_requires=['Markdown>=2.0',],
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Programming Language :: Python',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML'
]
)