setup.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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. packages = ["lib_stov"],
  24. scripts = ["stov"],
  25. data_files = [("share/locale/de/LC_MESSAGES", ["locale/de/LC_MESSAGES/stov.mo" ]),
  26. ("share/locale/C/LC_MESSAGES", ["locale/C/LC_MESSAGES/stov.mo"]),
  27. ("share/locale/en/LC_MESSAGES", ["locale/en/LC_MESSAGES/stov.mo"])]
  28. )