You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
304 B
Python
12 lines
304 B
Python
from .processor import EynollahProcessor
|
|
from click import command
|
|
from ocrd.decorators import ocrd_cli_options, ocrd_cli_wrap_processor
|
|
|
|
@command()
|
|
@ocrd_cli_options
|
|
def main(*args, **kwargs):
|
|
return ocrd_cli_wrap_processor(EynollahProcessor, *args, **kwargs)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|