-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 697 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from setuptools import setup
setup(
name='mdx_textalign',
version='1.0',
author='Andrew Horn',
author_email='andrewphorn@gmail.com',
description='Python-Markdown extension to support centering and right-aligning text.',
url='https://github.com/andrewphorn/markdown.textalign',
py_modules=['mdx_textalign'],
install_requires=['Markdown>=2.0',],
classifiers=[
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Programming Language :: Python',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML'
]
)