@@ -1,3 +1,7 @@ | |||||
v0.6 (unreleased): | |||||
- ... | |||||
v0.5 (released August 28, 2018): | v0.5 (released August 28, 2018): | ||||
- Added a `--depth` flag to control recursion depth when searching for | - Added a `--depth` flag to control recursion depth when searching for | ||||
@@ -10,6 +10,10 @@ version of git and either Python 2.7 or Python 3 installed. | |||||
# Installation | # Installation | ||||
With [pip](https://github.com/pypa/pip/): | |||||
pip install gitup | |||||
With [Homebrew](http://brew.sh/): | With [Homebrew](http://brew.sh/): | ||||
brew install gitup | brew install gitup | ||||
@@ -10,5 +10,5 @@ gitup: the git repository updater | |||||
__author__ = "Ben Kurtovic" | __author__ = "Ben Kurtovic" | ||||
__copyright__ = "Copyright (C) 2011-2018 Ben Kurtovic" | __copyright__ = "Copyright (C) 2011-2018 Ben Kurtovic" | ||||
__license__ = "MIT License" | __license__ = "MIT License" | ||||
__version__ = "0.5" | |||||
__version__ = "0.6.dev0" | |||||
__email__ = "ben.kurtovic@gmail.com" | __email__ = "ben.kurtovic@gmail.com" |
@@ -25,6 +25,7 @@ setup( | |||||
author_email = "ben.kurtovic@gmail.com", | author_email = "ben.kurtovic@gmail.com", | ||||
description = "Easily update multiple git repositories at once", | description = "Easily update multiple git repositories at once", | ||||
long_description = long_desc, | long_description = long_desc, | ||||
long_description_content_type = "text/markdown", | |||||
license = "MIT License", | license = "MIT License", | ||||
keywords = "git repository pull update", | keywords = "git repository pull update", | ||||
url = "https://github.com/earwig/git-repo-updater", | url = "https://github.com/earwig/git-repo-updater", | ||||