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.

28 lines
835 B

10 years ago
10 years ago
  1. #! /usr/bin/env python
  2. from distutils.core import setup
  3. from youtube_dl_gui import version
  4. name = 'Youtube-DLG'
  5. desc = 'Youtube-dl GUI'
  6. ldesc = 'A cross platform front-end GUI of the popular youtube-dl written in wxPython'
  7. license = 'UNLICENSE'
  8. platform = 'Cross-Platform'
  9. author = 'Sotiris Papadopoulos'
  10. author_email = 'ytubedlg@gmail.com'
  11. project_url = 'http://mrs0m30n3.github.io/youtube-dl-gui/'
  12. packages = ['youtube_dl_gui']
  13. data_files = [('lib/python2.7/site-packages/youtube_dl_gui/icons',
  14. ['youtube_dl_gui/icons/youtube-dl-gui.png'])]
  15. setup(name=name,
  16. version=version.__version__,
  17. description=desc,
  18. long_description=ldesc,
  19. license=license,
  20. platforms=platform,
  21. author=author,
  22. author_email=author_email,
  23. url=project_url,
  24. packages=packages,
  25. data_files=data_files)