Add tests_require into setup.py

pytest and mock are needed for running tests.
This commit is contained in:
Felix Yan 2015-11-27 12:52:03 +08:00
parent 13457c773b
commit 698351cf44

View File

@ -48,5 +48,6 @@ setup(
'sshuttle = sshuttle.__main__', 'sshuttle = sshuttle.__main__',
], ],
}, },
tests_require=['pytest', 'mock'],
keywords="ssh vpn", keywords="ssh vpn",
) )