__init__.py 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. #!/usr/bin/python
  2. # -*- python -*-
  3. # reportbug - Report a bug in the Debian distribution.
  4. # Written by Chris Lawrence <lawrencc@debian.org>
  5. # Copyright (C) 1999-2008 Chris Lawrence
  6. # Copyright (C) 2008-2016 Sandro Tosi <morph@debian.org>
  7. #
  8. # This program is freely distributable per the following license:
  9. #
  10. LICENSE = """\
  11. Permission to use, copy, modify, and distribute this software and its
  12. documentation for any purpose and without fee is hereby granted,
  13. provided that the above copyright notice appears in all copies and that
  14. both that copyright notice and this permission notice appear in
  15. supporting documentation.
  16. I DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
  17. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL I
  18. BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
  19. DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  21. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  22. SOFTWARE."""
  23. __all__ = ['bugreport', 'utils', 'urlutils', 'checkbuildd', 'checkversions',
  24. 'debbugs', 'exceptions', 'submit', 'tempfile']
  25. VERSION_NUMBER = "6.6.6"
  26. VERSION = "reportbug " + VERSION_NUMBER
  27. COPYRIGHT = VERSION + '\nCopyright (C) 1999-2008 Chris Lawrence <lawrencc@debian.org>' + \
  28. '\nCopyright (C) 2008-2016 Sandro Tosi <morph@debian.org>'