-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
33 lines (29 loc) · 991 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
29
30
31
32
33
#!/usr/bin/env python
"""
sphinx-markdown
Author: Alpha <[email protected]>
"""
from setuptools import setup
setup(
name='sphinx-markdown',
version='1.0.2',
description='Sphinx extension to support Markdown files',
url='https://github.com/Alphadelta14/sphinx-markdown',
author='Alphadelta14',
author_email='[email protected]',
license='MIT',
install_requires=[
'Markdown',
'sphinx'
],
packages=['sphinx_markdown', 'sphinx_markdown.extensions'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Plugins',
'License :: OSI Approved :: MIT License',
'Topic :: Documentation',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'],
keywords='sphinx markdown',
)