start 861 B

12345678910111213141516171819202122232425262728293031
  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, os
  7. # print(os.environ['LD_LIBRARY_PATH'])
  8. __copyright__ = """
  9. Copyright (C) 2007-2016 Bachir Soussi Chiadmi
  10. This program is free software; you can redistribute it and/or modify
  11. it under the terms of the A GNU General Public License version 2 as
  12. published by the Free Software Foundation.
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. GNU General Public License for more details.
  17. """
  18. from libriis.main import main
  19. # sys.path.append('/usr/local/lib')
  20. # sys.path.append('/usr/local/lib64')
  21. if __name__ == '__main__':
  22. sys.exit(main())