1 2 3 4 5 6 7 8 9 10 11
|
#### PATTERN | ES | PARSER COMMAND-LINE ############################################################
# Copyright (c) 2010 University of Antwerp, Belgium
# Author: Tom De Smedt <tom@organisms.be>
# License: BSD (see LICENSE.txt for details).
# http://www.clips.ua.ac.be/pages/pattern
####################################################################################################
# In Python 2.7+ modules invoked from the command line will look for a __main__.py.
from __init__ import commandline, parse
commandline(parse)
|