From f251e10e735665cd8d1c61571283fefce127a976 Mon Sep 17 00:00:00 2001 From: Cedric Zhuang Date: Wed, 25 Jan 2017 11:30:37 +0800 Subject: [PATCH] [GH-86] Add requirement license info. Add license information for each dependencies listed in requirements.txt. And add a `requirements.os.txt` file for dependency downloading under openstack cinder/manila environments. --- requirements.os.txt | 9 +++++++++ requirements.txt | 21 +++++++++++---------- 2 files changed, 20 insertions(+), 10 deletions(-) create mode 100644 requirements.os.txt diff --git a/requirements.os.txt b/requirements.os.txt new file mode 100644 index 00000000..d991d387 --- /dev/null +++ b/requirements.os.txt @@ -0,0 +1,9 @@ +## Recommend to download these files with "--no-deps" option, e.g. +## pip download --no-deps -r /requirements.os.txt +future>=0.15.1 # MIT +python-dateutil>=2.4.2 # BSD +retryz>=0.1.8 # Apache-2.0 +cachez>=0.1.0 # Apache-2.0 +bitmath>=1.3.0 # MIT +queuelib>=1.4.2 # BSD +storops # Apache-2.0 diff --git a/requirements.txt b/requirements.txt index 9b392a47..62bb2099 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,11 @@ -future>=0.15.1 -paramiko>=1.13.0 -python-dateutil>=2.4.2 -PyYAML>=3.11 -requests!=2.9.0,>=2.8.1 -retryz>=0.1.8 -cachez>=0.1.0 -six>=1.9.0 -bitmath>=1.3.0 -queuelib>=1.4.2 +paramiko>=1.13.0 # LGPLv2.1+, cinder, manila +requests!=2.9.0,>=2.8.1 # Apache-2.0, cinder, manila +PyYAML>=3.11 # MIT, cinder, manila +six>=1.9.0 # MIT, cinder, manila + +future>=0.15.1 # MIT +python-dateutil>=2.4.2 # BSD +retryz>=0.1.8 # Apache-2.0 +cachez>=0.1.0 # Apache-2.0 +bitmath>=1.3.0 # MIT +queuelib>=1.4.2 # BSD