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.

36 lines
996 B

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. #! /usr/bin/env python
  2. from distutils.core import setup
  3. from youtube_dl_gui import (
  4. __author__,
  5. __appname__,
  6. __contact__,
  7. __version__,
  8. __license__,
  9. __projecturl__,
  10. __description__,
  11. __descriptionfull__
  12. )
  13. icons_path = '/usr/local/share/icons/hicolor/'
  14. youtube_dl_icons = 'youtube_dl_gui/icons/youtube-dl-gui_'
  15. setup(
  16. name=__appname__,
  17. author=__author__,
  18. url=__projecturl__,
  19. version=__version__,
  20. license=__license__,
  21. author_email=__contact__,
  22. description=__description__,
  23. long_description=__descriptionfull__,
  24. packages=['youtube_dl_gui'],
  25. data_files=[
  26. (icons_path + '16x16/apps', [youtube_dl_icons + '16x16.png']),
  27. (icons_path + '32x32/apps', [youtube_dl_icons + '32x32.png']),
  28. (icons_path + '64x64/apps', [youtube_dl_icons + '64x64.png']),
  29. (icons_path + '128x128/apps', [youtube_dl_icons + '128x128.png']),
  30. (icons_path + '256x256/apps', [youtube_dl_icons + '256x256.png'])
  31. ]
  32. )