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.

46 lines
1.7 KiB

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