-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (24 loc) · 862 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
28
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
readme = open(os.path.join(here, 'README.rst')).read()
changes = open(os.path.join(here, 'CHANGES.rst')).read()
requires = []
setup(
name='mdx_sections',
version='0.1',
description="Python-Markdown extension to add a small amount of structure to Markdown documents.",
long_description="{readme}\n\n{changes}".format(readme=readme, changes=changes),
classifiers=[
"Programming Language :: Python",
],
author='Jesse Dhillon',
author_email='[email protected]',
url='http://github.com/jessedhillon/mdx_sections',
keywords='web wsgi bfg pylons pyramid',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='mdx_sections',
install_requires = requires,
)