You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.8 KiB

10 years ago
  1. # -*- coding: utf-8 -*-
  2. """Youtubedlg module that holds package information.
  3. Note:
  4. All those info could be stored in the __init__ file
  5. but we keep them here to keep the code clean.
  6. """
  7. from __future__ import unicode_literals
  8. __author__ = 'Sotiris Papadopoulos'
  9. __contact__ = 'ytubedlg@gmail.com'
  10. __projecturl__ = 'http://mrs0m30n3.github.io/youtube-dl-gui/'
  11. __appname__ = 'Youtube-DLG'
  12. __license__ = 'UNLICENSE'
  13. __description__ = 'Youtube-dl GUI'
  14. __descriptionfull__ = '''A cross platform front-end GUI of the popular
  15. youtube-dl written in wxPython'''
  16. __licensefull__ = '''
  17. This is free and unencumbered software released into the public domain.
  18. Anyone is free to copy, modify, publish, use, compile, sell, or
  19. distribute this software, either in source code form or as a compiled
  20. binary, for any purpose, commercial or non-commercial, and by any
  21. means.
  22. In jurisdictions that recognize copyright laws, the author or authors
  23. of this software dedicate any and all copyright interest in the
  24. software to the public domain. We make this dedication for the benefit
  25. of the public at large and to the detriment of our heirs and
  26. successors. We intend this dedication to be an overt act of
  27. relinquishment in perpetuity of all present and future rights to this
  28. software under copyright law.
  29. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  30. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  31. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  32. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  33. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  34. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  35. OTHER DEALINGS IN THE SOFTWARE.
  36. For more information, please refer to <http://unlicense.org/>'''