-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.11 KB
/
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
import os, sys
from setuptools import setup
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='code-inclusion',
description='This is plugin to extend python markdown and allow it include code blocks from other sources.',
long_description=(read('README.md')),
author='Michael Quested',
author_email='[email protected]',
license='MIT',
url='https://github.com/ARMmbed/mbed-docs/tree/master/readthedocs/mbed/markdown_extensions/code-inclusion',
include_package_data=True,
version='1.0',
py_modules=['code_inclusion'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires = ['markdown>=2.5'],
)