-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
27 lines (24 loc) · 808 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
26
27
#! /usr/bin/env python
from setuptools import setup
setup(
name="mdx_outline",
version="1.3.0",
author="Alexandre Leray",
author_email="[email protected]",
description="Python-Markdown extension to wrap the document logical sections (as implied by h1-h6 headings)",
url="http://activearchives.org/",
py_modules=["mdx_outline"],
install_requires=[
"Markdown>=3.4",
],
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",
],
)