Commit eacbdb3b by Chris Jerdonek

Moved commands.py into a commands sub-package.

parent b56f03c4
...@@ -8,7 +8,7 @@ Unit tests of commands.py. ...@@ -8,7 +8,7 @@ Unit tests of commands.py.
import sys import sys
import unittest import unittest
from pystache.commands import main from pystache.commands.render import main
ORIGINAL_STDOUT = sys.stdout ORIGINAL_STDOUT = sys.stdout
......
...@@ -194,7 +194,7 @@ def main(sys_argv): ...@@ -194,7 +194,7 @@ def main(sys_argv):
}, },
test_suite='pystache.tests', test_suite='pystache.tests',
entry_points = { entry_points = {
'console_scripts': ['pystache=pystache.commands:main'], 'console_scripts': ['pystache=pystache.commands.render:main'],
}, },
classifiers = CLASSIFIERS, classifiers = CLASSIFIERS,
**extra **extra
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment