setup.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #! /usr/bin/env python
  2. #
  3. # This file is part of stov, written by Helmut Pozimski 2012-2013.
  4. #
  5. # stov is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, version 2 of the License.
  8. #
  9. # stov is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with stov. If not, see <http://www.gnu.org/licenses/>.
  16. # -*- coding: utf8 -*-
  17. from distutils.core import setup
  18. setup(
  19. name="stov",
  20. version="0.6",
  21. author="Helmut Pozimski",
  22. author_email="helmut@pozimski.de",
  23. description=("a program to subscribe to channels and users from youtube and"
  24. " download the videos automatically"),
  25. long_description=("stov is a program which allows you to subscribe to "
  26. "channels, playlists and search results on youtube. You don't need a"
  27. " youtube account for the program to work since it uses read-only access "
  28. "to the youtube API. You can for example run it as a cron job to "
  29. "automatically download your favourite videos."),
  30. license="GNU General Public License version 2",
  31. packages=["lib_stov"],
  32. scripts=["stov"],
  33. data_files=[("share/locale/de/LC_MESSAGES",
  34. ["locale/de/LC_MESSAGES/stov.mo"]),
  35. ("share/locale/en/LC_MESSAGES", ["locale/en/LC_MESSAGES/stov.mo"])]
  36. )