We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7874b8f commit 9a139abCopy full SHA for 9a139ab
setup.py
@@ -85,11 +85,19 @@ def get_test_suite():
85
'undebug = undebug.main:cli',
86
]
87
},
88
+ # NOTE: sonic-utilities also depends on other packages that are either only
89
+ # available as .whl files or the latest available Debian packages are
90
+ # out-of-date and we must install newer versions via pip. These
91
+ # dependencies cannot be listed here, as this package is built as a .deb,
92
+ # therefore all dependencies will be assumed to also be available as .debs.
93
+ # These unlistable dependencies are as follows:
94
+ # - sonic-config-engine
95
+ # - swsssdk
96
+ # - tabulate
97
install_requires=[
98
'click-default-group',
99
'click',
- 'natsort',
- 'tabulate'
100
+ 'natsort'
101
],
102
classifiers=[
103
'Development Status :: 3 - Alpha',
0 commit comments