diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-07-08 11:49:21 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-07-08 11:49:21 +0200 |
commit | 3288a244428751208394d8137437878277ceb71f (patch) | |
tree | 497cfd23fcafec34809856b7bdeddd0b82e45ca0 /setup.py | |
parent | b425301ad16f265157abdaf47f7af1c1ea879068 (diff) | |
download | gitpython-3288a244428751208394d8137437878277ceb71f.tar.gz |
setup.py: fixed requirement - its interesting to see that there are two different keywords for distutils and setuptools, the latter one doesn't read the ones of the first one, unfortunately0.3.0-beta1
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -62,6 +62,7 @@ setup(name = "GitPython", package_dir = {'':'lib'}, license = "BSD License", requires=('gitdb (>=0.5)',), + install_requires='gitdb >= 0.5.0', long_description = """\ GitPython is a python library used to interact with Git repositories""", classifiers = [ |