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.

24 lines
458 B

  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [dev-packages]
  6. pylint = "*"
  7. pytest = "*"
  8. twine = "*"
  9. [packages]
  10. "e1839a8" = {path = ".", editable = true}
  11. GitPython = ">= 2.1.8"
  12. colorama = ">= 0.3.9"
  13. [requires]
  14. python_version = "3"
  15. [scripts]
  16. test = "pytest gitup -v -rxw"
  17. lint = "pylint --disable=missing-docstring --output-format=colorized gitup"
  18. cloc = "cloc --vcs=git"
  19. build = "python setup.py sdist bdist_wheel --universal"