forked from smartboyathome/Markdown-GridTables
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
23 lines (21 loc) · 742 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
#! /usr/bin/env python
from setuptools import setup
setup(
name='mdx_grid_tables',
version='1.2',
author='smartboyathome',
description='Python-Markdown extension to add grid_table support',
url='https://github.com/smartboyathome/Markdown-GridTables/',
py_modules=['mdx_grid_tables'],
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'
]
)