rename ryu-client under ryu/tests

Since it is debugging tool for developer, don't install it.
and move it under ryu/rests directory.

Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
Isaku Yamahata 2013-06-29 11:14:16 +09:00 committed by FUJITA Tomonori
parent d7db9cff47
commit b38974f363
3 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -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,
)