diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-11-30 21:29:08 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-11-30 21:29:08 +0100 |
commit | 1053448ad885c633af9805a750d6187d19efaa6c (patch) | |
tree | 7682750b3812b2c96d5d8873c9d83251e417e1ff /README.rst | |
parent | 90b20e5cd9ba8b679a488efedb1eb1983e848acf (diff) | |
download | gitpython-1053448ad885c633af9805a750d6187d19efaa6c.tar.gz |
Renamed readme file to something github understands much better, adjusted documentation links to point to github instead of lighthouse/gitorious
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/README.rst b/README.rst new file mode 100644 index 00000000..0e50b50b --- /dev/null +++ b/README.rst @@ -0,0 +1,63 @@ +========== +GitPython +========== + +GitPython is a python library used to interact with git repositories, high-level like git-porcelain, or low-level like git-plumbing. + +It provides abstractions of git objects for easy access of repository data, and additionally allows you to access the git repository more directly using either a pure python implementation, or the faster, but more resource intensive git command implementation. + +The object database implementation is optimized for handling large quantities of objects and large datasets, which is achieved by using low-level structures and data streaming. + +REQUIREMENTS +============ + +* Git ( tested with 1.7.3.2 ) +* Python Nose - used for running the tests +* Mock by Michael Foord used for tests. Requires 0.5 + +INSTALL +======= +If you have downloaded the source code: + + python setup.py install + +or if you want to obtain a copy more easily: + + easy_install gitpython + +A distribution package can be obtained for manual installation at: + + http://pypi.python.org/pypi/GitPython + +SOURCE +====== + +GitPython's git repo is available on GitHub, which can be browsed at: + +https://github.com/gitpython-developers/GitPython + +and cloned using: + +git clone git://github.com/gitpython-developers/GitPython.git git-python + + +DOCUMENTATION +============= +The html-compiled documentation can be found at the following URL: + +http://packages.python.org/GitPython/ + +MAILING LIST +============ +http://groups.google.com/group/git-python + +ISSUE TRACKER +============= +Issues are tracked on github: + +https://github.com/gitpython-developers/GitPython/issues + +LICENSE +======= + +New BSD License. See the LICENSE file. |