Since it is debugging tool for developer, don't install it. and move it under ryu/rests directory.
Signed-off-by: Isaku Yamahata <[email protected]> --- run_tests.sh | 2 +- {bin => ryu/tests/bin}/ryu-client | 0 setup.py | 3 +-- 3 files changed, 2 insertions(+), 3 deletions(-) rename {bin => ryu/tests/bin}/ryu-client (100%) diff --git a/run_tests.sh b/run_tests.sh index 1c6199b..5e0d631 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -90,7 +90,7 @@ run_tests() { run_pylint() { echo "Running pylint ..." PYLINT_OPTIONS="--rcfile=.pylintrc --output-format=parseable" - PYLINT_INCLUDE="ryu bin/ryu-manager bin/ryu-client" + PYLINT_INCLUDE="ryu bin/ryu-manager ryu/tests/bin/ryu-client" export PYTHONPATH=$PYTHONPATH:.ryu PYLINT_LOG=pylint.log diff --git a/bin/ryu-client b/ryu/tests/bin/ryu-client similarity index 100% rename from bin/ryu-client rename to ryu/tests/bin/ryu-client diff --git a/setup.py b/setup.py index 0c7436d..efbb550 100644 --- a/setup.py +++ b/setup.py @@ -59,8 +59,7 @@ setup(name='ryu', install_requires=requires, license='Apache License 2.0', packages=find_packages(), - scripts=['bin/ryu-manager', - 'bin/ryu-client'], + scripts=['bin/ryu-manager', ], data_files=data_files, include_package_data=True, ) -- 1.7.10.4 ------------------------------------------------------------------------------ This SF.net email is sponsored by Windows: Build for Windows Store. http://p.sf.net/sfu/windows-dev2dev _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
