Skip to content

Commit

Permalink
Remove explicit dependency on tabulate; Add comments (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
jleveque committed Oct 10, 2018
1 parent 7874b8f commit 9a139ab
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,19 @@ def get_test_suite():
'undebug = undebug.main:cli',
]
},
# NOTE: sonic-utilities also depends on other packages that are either only
# available as .whl files or the latest available Debian packages are
# out-of-date and we must install newer versions via pip. These
# dependencies cannot be listed here, as this package is built as a .deb,
# therefore all dependencies will be assumed to also be available as .debs.
# These unlistable dependencies are as follows:
# - sonic-config-engine
# - swsssdk
# - tabulate
install_requires=[
'click-default-group',
'click',
'natsort',
'tabulate'
'natsort'
],
classifiers=[
'Development Status :: 3 - Alpha',
Expand Down

0 comments on commit 9a139ab

Please sign in to comment.