diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2011-06-13 23:29:22 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2011-06-13 23:49:42 +0200 |
| commit | 4524faf0d0c5383268b134084954b34faeaa766d (patch) | |
| tree | c907cf46ff1d49628e68a0dcd3cf3e3b8860287a /gitdb/__init__.py | |
| parent | 40762f9a744c3719396a71819c1fcd3815cc2f2b (diff) | |
| download | gitdb-4524faf0d0c5383268b134084954b34faeaa766d.tar.gz | |
Fixed up docs for upcoming release. Bumped version to 0.5.3
Diffstat (limited to 'gitdb/__init__.py')
| -rw-r--r-- | gitdb/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gitdb/__init__.py b/gitdb/__init__.py index 775c969..9135910 100644 --- a/gitdb/__init__.py +++ b/gitdb/__init__.py @@ -24,6 +24,13 @@ def _init_externals(): _init_externals() +__author__ = "Sebastian Thiel" +__contact__ = "byronimo@gmail.com" +__homepage__ = "https://github.com/gitpython-developers/gitdb" +version_info = (0, 5, 3) +__version__ = '.'.join(str(i) for i in version_info) + + # default imports from db import * from base import * |
