diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2017-12-08 19:48:08 -0500 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2017-12-08 20:46:24 -0500 |
commit | 52b8da8e47c6dce643504f503c995c310b14bd19 (patch) | |
tree | 33ed7b1225fa2413bdc39fd55ac5cbc039bc87ff /bin | |
parent | 78c7b25454dc949f0a9037097f1f685bb6fe615b (diff) | |
download | markdown-52b8da8e47c6dce643504f503c995c310b14bd19.tar.gz markdown-52b8da8e47c6dce643504f503c995c310b14bd19.tar.bz2 markdown-52b8da8e47c6dce643504f503c995c310b14bd19.zip |
Switch to setuptools.
Use console_scripts entry_point instead of manually built script.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/markdown_py | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/bin/markdown_py b/bin/markdown_py deleted file mode 100755 index 220c666..0000000 --- a/bin/markdown_py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env python -""" -Python Markdown, the Command Line Script -======================================== - -This is the command line script for Python Markdown. - -Basic use from the command line: - - markdown source.txt > destination.html - -Run "markdown --help" to see more options. - -See markdown/__init__.py for information on using Python Markdown as a module. - -## Authors and License - -Started by [Manfred Stienstra](http://www.dwerg.net/). Continued and -maintained by [Yuri Takhteyev](http://www.freewisdom.org), [Waylan -Limberg](http://achinghead.com/) and [Artem Yunusov](http://blog.splyer.com). - -Contact: markdown@freewisdom.org - -Copyright 2007, 2008 The Python Markdown Project (v. 1.7 and later) -Copyright 200? Django Software Foundation (OrderedDict implementation) -Copyright 2004, 2005, 2006 Yuri Takhteyev (v. 0.2-1.6b) -Copyright 2004 Manfred Stienstra (the original version) - -License: BSD (see docs/LICENSE for details). -""" - -if __name__ == '__main__': - from markdown.__main__ import run - run() |