Skip to content

Commit 1f225d4

Browse files
committed
Added support for travis ci
1 parent 9e91a05 commit 1f225d4

File tree

3 files changed

+26
-21
lines changed

3 files changed

+26
-21
lines changed

.travis.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: python
2+
python:
3+
- "2.6"
4+
- "2.7"
5+
# - "pypy" - won't work as smmap doesn't work (see gitdb/.travis.yml for details)
6+
7+
script: nosetests

README.rst renamed to README.md

+18-20
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
1-
==========
2-
GitPython
3-
==========
1+
## GitPython
2+
3+
.. image:: https://travis-ci.org/gitpython-developers/GitPython.svg?branch=master :target: https://travis-ci.org/gitpython-developers/GitPython
44

55
GitPython is a python library used to interact with git repositories, high-level like git-porcelain, or low-level like git-plumbing.
66

77
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.
88

99
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.
1010

11-
REQUIREMENTS
12-
============
11+
### REQUIREMENTS
1312

1413
* Git ( tested with 1.8.3.4 )
1514
* Python Nose - used for running the tests
16-
* Tested with nose 1.3.0
15+
- Tested with nose 1.3.0
1716
* Mock by Michael Foord used for tests
18-
* Tested with 1.0.1
17+
- Tested with 1.0.1
18+
19+
### INSTALL
1920

20-
INSTALL
21-
=======
2221
If you have downloaded the source code:
2322

2423
python setup.py install
25-
24+
2625
or if you want to obtain a copy more easily:
2726

2827
pip install gitpython
@@ -31,8 +30,8 @@ A distribution package can be obtained for manual installation at:
3130

3231
http://pypi.python.org/pypi/GitPython
3332

34-
SOURCE
35-
======
33+
### SOURCE
34+
3635

3736
GitPython's git repo is available on GitHub, which can be browsed at:
3837

@@ -43,23 +42,22 @@ and cloned using:
4342
git clone git://github.com/gitpython-developers/GitPython.git git-python
4443

4544

46-
DOCUMENTATION
47-
=============
45+
### DOCUMENTATION
46+
4847
The html-compiled documentation can be found at the following URL:
4948

5049
http://packages.python.org/GitPython/
5150

52-
MAILING LIST
53-
============
51+
### MAILING LIST
52+
5453
http://groups.google.com/group/git-python
5554

56-
ISSUE TRACKER
57-
=============
55+
### ISSUE TRACKER
56+
5857
Issues are tracked on github:
5958

6059
https://github.com/gitpython-developers/GitPython/issues
6160

62-
LICENSE
63-
=======
61+
### LICENSE
6462

6563
New BSD License. See the LICENSE file.

0 commit comments

Comments
 (0)