1
0

setup.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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.5wip",
  21. author = "Helmut Pozimski",
  22. author_email = "helmut@pozimski.de",
  23. py_modules = ["youtube", "youtubeAPI", "outputhelper", "subscription",
  24. "configuration"],
  25. scripts = ["stov.py"],
  26. data_files = [("share/locale/de/LC_MESSAGES", ["locale/de/LC_MESSAGES/stov.mo" ]),
  27. ("share/locale/C/LC_MESSAGES", ["locale/C/LC_MESSAGES/stov.mo"]),
  28. ("share/locale/en/LC_MESSAGES", ["locale/en/LC_MESSAGES/stov.mo"])]
  29. )