diff options
author | Antoine Musso <hashar@free.fr> | 2014-07-25 10:54:44 +0200 |
---|---|---|
committer | Antoine Musso <hashar@free.fr> | 2014-07-25 10:54:44 +0200 |
commit | dbd784b870a878ef6dbecd14310018cdaeda5c6d (patch) | |
tree | acda721c64b6a877196fc26c193e608d4c54de53 /README.md | |
parent | 27c577dfd5c7f0fc75cd10ed6606674b56b405bd (diff) | |
download | gitpython-dbd784b870a878ef6dbecd14310018cdaeda5c6d.tar.gz |
List runtime dependencies in requirements.txt
More and more packages are listing their dependencies in
requirements.txt which make it trivial to maintain and install them.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -14,16 +14,20 @@ The object database implementation is optimized for handling large quantities of * Mock by Michael Foord used for tests - Tested with 1.0.1 +The list of dependencies are listed in /requirements.txt. The installer takes care of installing them for you though. + ### INSTALL If you have downloaded the source code: python setup.py install - -or if you want to obtain a copy more easily: + +or if you want to obtain a copy from the Pypi repository: pip install gitpython - + +Both commands will install the required package dependencies. + A distribution package can be obtained for manual installation at: http://pypi.python.org/pypi/GitPython |