A console script that allows you to easily update multiple git repositories at once
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.

43 lines
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.6", "colorama >= 0.3.3"],
  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. )