summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Sheibar <ted@openx.com>2014-08-19 17:24:11 -0700
committerTed Sheibar <ted@openx.com>2014-08-19 17:24:11 -0700
commit5f5e071be6742c1cc96aa5f35543668493629423 (patch)
tree76b03670e07004b6e51be46299fbe2c9aca6d4f8
parentaa66d10bb6485af5941f1550dad77e825f384fed (diff)
downloadgitpython-5f5e071be6742c1cc96aa5f35543668493629423.tar.gz
Fixing 'tuple index out of range' issue with distutils/command/upload.py (v2.7.7): the 'requires' field tuple should be a list(https://github.com/gitpython-developers/GitPython/issues/186)
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 7a886aa3..7672e239 100644
--- a/setup.py
+++ b/setup.py
@@ -75,7 +75,7 @@ setup(name="GitPython",
package_data={'git.test': ['fixtures/*']},
package_dir={'git': 'git'},
license="BSD License",
- requires=('gitdb (>=0.5.1)',),
+ requires=['gitdb (>=0.5.1)',],
install_requires='gitdb >= 0.5.1',
zip_safe=False,
long_description = """\