Dependencies question
Closed this issue · 2 comments
Deleted user commented
Out of the dependencies listed
ansicolors
kazoo>=2.0
nose
tabulate
Can you say which are needed only for testing and which are needed for zkshell itself?
Thanks
rgs1 commented
nose is only for testing, all the others are needed at regular runtime as declared in setup.py:
install_requires=['ansicolors', 'kazoo>=2.0', 'tabulate'],
tests_require=['ansicolors', 'kazoo>=2.0', 'nose', 'tabulate'],
extras_require={
'test': ['ansicolors', 'kazoo>=2.0', 'nose', 'tabulate'],
},
Deleted user commented
thanks