A console script that allows you to easily update multiple git repositories at once
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

51 rader
1.7 KiB

  1. # -*- coding: utf-8 -*-
  2. #
  3. # Copyright (C) 2011-2018 Ben Kurtovic <ben.kurtovic@gmail.com>
  4. # Released under the terms of the MIT License. See LICENSE 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: <https://www.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.cli:run"]},
  16. install_requires = ["GitPython >= 2.1.8", "colorama >= 0.3.9"],
  17. version = __version__,
  18. author = "Ben Kurtovic",
  19. author_email = "ben.kurtovic@gmail.com",
  20. description = "Easily update multiple git repositories at once",
  21. long_description = long_desc,
  22. long_description_content_type = "text/markdown",
  23. license = "MIT License",
  24. keywords = "git repository pull update",
  25. url = "https://github.com/earwig/git-repo-updater",
  26. classifiers = [
  27. "Development Status :: 4 - Beta",
  28. "Environment :: Console",
  29. "Intended Audience :: Developers",
  30. "License :: OSI Approved :: MIT License",
  31. "Natural Language :: English",
  32. "Operating System :: MacOS :: MacOS X",
  33. "Operating System :: POSIX",
  34. "Operating System :: Microsoft :: Windows",
  35. "Programming Language :: Python",
  36. "Programming Language :: Python :: 2.7",
  37. "Programming Language :: Python :: 3",
  38. "Programming Language :: Python :: 3.4",
  39. "Programming Language :: Python :: 3.5",
  40. "Programming Language :: Python :: 3.6",
  41. "Programming Language :: Python :: 3.7",
  42. "Topic :: Software Development :: Version Control :: Git"
  43. ]
  44. )