File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ def _stamp_version(filename):
6363 else :
6464 print >> sys .stderr , "WARNING: Couldn't find version line in file %s" % filename
6565
66+ test_requirements = ['mock' , 'nose' , 'gitdb >= 0.5.1' ]
6667setup (name = "GitPython" ,
6768 cmdclass = {'build_py' : build_py , 'sdist' : sdist },
6869 version = VERSION ,
@@ -75,8 +76,8 @@ def _stamp_version(filename):
7576 package_data = {'git.test' : ['fixtures/*' ]},
7677 package_dir = {'git' : 'git' },
7778 license = "BSD License" ,
78- requires = [ 'gitdb (>=0.5.1)' ,] ,
79- install_requires = 'gitdb >= 0.5.1' ,
79+ tests_require = test_requirements ,
80+ install_requires = [ 'async' , 'smmap' , 'dulwich' ] + test_requirements ,
8081 zip_safe = False ,
8182 long_description = """\
8283 GitPython is a python library used to interact with Git repositories""" ,
You can’t perform that action at this time.
0 commit comments