forked from asottile/markdown-code-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 906 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
from setuptools import setup
setup(
name='markdown-code-blocks',
description='Generate html from markdown with code-block highlighting',
url='https://github.com/asottile/markdown-code-blocks',
version='1.2.0',
author='Anthony Sottile',
author_email='[email protected]',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
install_requires=['mistune', 'pygments'],
py_modules=['markdown_code_blocks'],
entry_points={'console_scripts': [
'markdown-code-blocks-highlight=markdown_code_blocks:main',
]},
)