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.

25 lines
650 B

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. setup(name=__appname__,
  14. version=__version__,
  15. description=__description__,
  16. long_description=__descriptionfull__,
  17. license=__license__,
  18. author=__author__,
  19. author_email=__contact__,
  20. url=__projecturl__,
  21. packages=['youtube_dl_gui'],
  22. data_files=[('lib/python2.7/site-packages/youtube_dl_gui/icons',
  23. ['youtube_dl_gui/icons/youtube-dl-gui.png'])])