28 lines
740 B
Python
Executable File
28 lines
740 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- python-mode -*-
|
|
"""Cascade: The html2print GUI
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
import sys
|
|
|
|
|
|
__copyright__ = """
|
|
Copyright (C) 2007-2016 Bachir Soussi Chiadmi
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the A GNU General Public License version 2 as
|
|
published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
"""
|
|
|
|
from cascade.main import main # pylint: disable=wrong-import-position
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main())
|