rgs1/zk_shell

Dependencies question

Closed this issue · 2 comments

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'],
      },

thanks