File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def _stamp_version(filename):
63
63
else :
64
64
print >> sys .stderr , "WARNING: Couldn't find version line in file %s" % filename
65
65
66
- install_requires = ( 'gitdb >= 0.6.0' ,)
66
+ install_requires = [ 'gitdb >= 0.6.0' ,]
67
67
setup (name = "GitPython" ,
68
68
cmdclass = {'build_py' : build_py , 'sdist' : sdist },
69
69
version = VERSION ,
@@ -76,9 +76,9 @@ def _stamp_version(filename):
76
76
package_data = {'git.test' : ['fixtures/*' ]},
77
77
package_dir = {'git' :'git' },
78
78
license = "BSD License" ,
79
- requires = ( 'gitdb (>=0.6.0)' , ) ,
79
+ requires = [ 'gitdb (>=0.6.0)' ] ,
80
80
install_requires = install_requires ,
81
- test_requirements = ( 'mock' , 'nose' ) + install_requires ,
81
+ test_requirements = [ 'mock' , 'nose' ] + install_requires ,
82
82
zip_safe = False ,
83
83
long_description = """\
84
84
GitPython is a python library used to interact with Git repositories""" ,
You can’t perform that action at this time.
0 commit comments