A console script that allows you to easily update multiple git repositories at once
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

43 wiersze
1.3 KiB

  1. # -*- coding: utf-8 -*-
  2. #
  3. # Copyright (C) 2011-2014 Ben Kurtovic <ben.kurtovic@gmail.com>
  4. # See the LICENSE file for details.
  5. import sys
  6. from setuptools import setup, find_packages
  7. if sys.hexversion < 0x02070000:
  8. exit("Please upgrade to Python 2.7 or greater: <http://python.org/>.")
  9. from gitup import __version__
  10. with open('README.md') as fp:
  11. long_desc = fp.read()
  12. setup(
  13. name = "gitup",
  14. packages = find_packages(),
  15. entry_points = {"console_scripts": ["gitup = gitup.script:run"]},
  16. install_requires = ["GitPython >= 0.3.2.RC1", "colorama >= 0.2.7"],
  17. version = __version__,
  18. author = "Ben Kurtovic",
  19. author_email = "ben.kurtovic@gmail.com",
  20. description = "Easily pull to multiple git repositories at once.",
  21. long_description = long_desc,
  22. license = "MIT License",
  23. keywords = "git repository pull update",
  24. url = "http://github.com/earwig/git-repo-updater",
  25. classifiers = [
  26. "Environment :: Console",
  27. "Intended Audience :: Developers",
  28. "License :: OSI Approved :: MIT License",
  29. "Natural Language :: English",
  30. "Operating System :: MacOS :: MacOS X",
  31. "Operating System :: POSIX :: Linux",
  32. "Programming Language :: Python",
  33. "Programming Language :: Python :: 2.7",
  34. "Topic :: Software Development :: Version Control"
  35. ]
  36. )