File tree Expand file tree Collapse file tree
Open diff view settings
Expand file tree Collapse file tree
Open diff view settings
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def _stamp_version(filename):
6363 else :
6464 print >> sys .stderr , "WARNING: Couldn't find version line in file %s" % filename
6565
66- install_requires = ( 'gitdb >= 0.6.0' ,)
66+ install_requires = [ 'gitdb >= 0.6.0' ,]
6767setup (name = "GitPython" ,
6868 cmdclass = {'build_py' : build_py , 'sdist' : sdist },
6969 version = VERSION ,
@@ -76,9 +76,9 @@ def _stamp_version(filename):
7676 package_data = {'git.test' : ['fixtures/*' ]},
7777 package_dir = {'git' :'git' },
7878 license = "BSD License" ,
79- requires = ( 'gitdb (>=0.6.0)' , ) ,
79+ requires = [ 'gitdb (>=0.6.0)' ] ,
8080 install_requires = install_requires ,
81- test_requirements = ( 'mock' , 'nose' ) + install_requires ,
81+ test_requirements = [ 'mock' , 'nose' ] + install_requires ,
8282 zip_safe = False ,
8383 long_description = """\
8484 GitPython is a python library used to interact with Git repositories""" ,
You can’t perform that action at this time.
0 commit comments