There was an error while loading. Please reload this page.
1 parent 54bf6d6 commit 1edbb9dCopy full SHA for 1edbb9d
setup.py
@@ -30,6 +30,11 @@ def get_version():
30
version, version_info, DEVSTATUS = get_version()
31
32
33
+# The command line script name. Currently set to "markdown_py" so as not to
34
+# conflict with the perl implimentation (which uses "markdown").
35
+SCRIPT_NAME = 'markdown_py'
36
+
37
38
long_description = '''
39
This is a Python implementation of John Gruber's Markdown_.
40
It is almost completely compliant with the reference implementation,
@@ -67,7 +72,7 @@ def get_version():
67
72
packages=['markdown', 'markdown.extensions'],
68
73
entry_points={
69
74
'console_scripts': [
70
- 'markdown = markdown.__main__:run',
75
+ '%s = markdown.__main__:run' % SCRIPT_NAME,
71
76
]
77
},
78
classifiers=[
0 commit comments