libriis 743 B

123456789101112131415161718192021222324252627
  1. #!/usr/bin/env python
  2. # -*- python-mode -*-
  3. """Libriis: The html2print GUI
  4. """
  5. from __future__ import absolute_import, print_function, division, unicode_literals
  6. import sys
  7. __copyright__ = """
  8. Copyright (C) 2007-2016 Bachir Soussi Chiadmi
  9. This program is free software; you can redistribute it and/or modify
  10. it under the terms of the A GNU General Public License version 2 as
  11. published by the Free Software Foundation.
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16. """
  17. from libriis.main import main
  18. if __name__ == '__main__':
  19. sys.exit(main())