summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2014-11-19 16:59:34 +0100
committerSebastian Thiel <byronimo@gmail.com>2014-11-19 17:01:39 +0100
commit4ae92aa57324849dd05997825c29242d2d654099 (patch)
tree56b841ec77a4b70b3cc47a50edb2edc4d0028dbf
parent616ae503462ea93326fa459034f517a4dd0cc1d1 (diff)
downloadgitpython-4ae92aa57324849dd05997825c29242d2d654099.tar.gz
Added build-the-docs badge and updated url
-rw-r--r--README.md4
-rwxr-xr-xsetup.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 44b55748..b99c4c2f 100644
--- a/README.md
+++ b/README.md
@@ -55,7 +55,7 @@ GitPython's git repo is available on GitHub, which can be browsed at [github](ht
### INFRASTRUCTURE
-* [User Documentation](http://packages.python.org/GitPython/)
+* [User Documentation](http://gitpython.readthedocs.org)
* [Mailing List](http://groups.google.com/group/git-python)
* [Issue Tracker](https://github.com/gitpython-developers/GitPython/issues)
@@ -67,6 +67,8 @@ New BSD License. See the LICENSE file.
[![Build Status](https://travis-ci.org/gitpython-developers/GitPython.svg?branch=0.3)](https://travis-ci.org/gitpython-developers/GitPython)
[![Coverage Status](https://coveralls.io/repos/gitpython-developers/GitPython/badge.png)](https://coveralls.io/r/gitpython-developers/GitPython)
+[![Documentation Status](https://readthedocs.org/projects/gitpython/badge/?version=stable)](https://readthedocs.org/projects/gitpython/?badge=stable)
+
The project was idle for 2 years, the last release (v0.3.2 RC1) was made on July 2011. Reason for this might have been the project's dependency on me as sole active maintainer, which is an issue in itself.
diff --git a/setup.py b/setup.py
index 166047d9..33f59c01 100755
--- a/setup.py
+++ b/setup.py
@@ -75,7 +75,7 @@ setup(
description="Python Git Library",
author="Sebastian Thiel, Michael Trier",
author_email="byronimo@gmail.com, mtrier@gmail.com",
- url="http://gitorious.org/projects/git-python/",
+ url="https://github.com/gitpython-developers/GitPython",
packages=find_packages('.'),
py_modules=['git.' + f[:-3] for f in os.listdir('./git') if f.endswith('.py')],
package_data={'git.test': ['fixtures/*']},