diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-02-17 13:06:01 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-02-22 12:22:51 +0900 |
commit | dc57ff5b470bdf6398e67e53b6306f71615a0d71 (patch) | |
tree | 044106463148b6c32dc9c8808ff8d941e080e1d4 | |
parent | d90589c2cc2e55c0f8e0775185e0c23ad7281c95 (diff) |
tools/optional-requires: SQLAlchemy for Zebra service
This patch adds a new optional requirements, SQLAlchemy, for Zebra
protocol service database.
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | README.rst | 1 | ||||
-rw-r--r-- | tools/optional-requires | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -38,6 +38,7 @@ Some functionalities of ryu requires extra packages: - OF-Config requires lxml and ncclient - NETCONF requires paramiko - BGP speaker (SSH console) requires paramiko +- Zebra protocol service (database) requires SQLAlchemy If you want to use the functionalities, please install requirements:: diff --git a/tools/optional-requires b/tools/optional-requires index 36c89ec0..1bc4cce7 100644 --- a/tools/optional-requires +++ b/tools/optional-requires @@ -2,3 +2,4 @@ lxml!=3.7.0,>=2.3 # OF-Config ncclient # OF-Config cryptography!=1.5.2 # Required by paramiko paramiko # NETCONF, BGP speaker (SSH console) +SQLAlchemy>=1.0.10,<1.1.0 # Zebra protocol service |