forked from miyuchina/mistletoe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
miyuchina
committed
Jul 20, 2017
1 parent
f874bc8
commit 99e8d20
Showing
5 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,6 @@ out.html | |
venv/ | ||
.coverage | ||
htmlcov | ||
render_latex.py | ||
.pylintrc | ||
*.egg-info | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include LICENSE.md | ||
include README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
mistletoe | ||
========= | ||
|
||
A fast, extensible Markdown parser in pure Python. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from setuptools import setup | ||
|
||
setup(name='mistletoe', | ||
version='0.1', | ||
description='A fast, extensible Markdown parser in pure Python.', | ||
url='https://github.com/miyuchina/mistletoe', | ||
author='Mi Yu', | ||
author_email='[email protected]', | ||
license='GNU GPLv3', | ||
packages=['mistletoe'], | ||
entry_points={'console_scripts': ['mistletoe = mistletoe.__main__:main']}, | ||
python_requires='~=3.5', | ||
zip_safe=False) |