From eda2a98d15e72e5083b1229670c316387b4dba15 Mon Sep 17 00:00:00 2001 From: Joo Date: Tue, 31 Oct 2017 09:13:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=87=AA=E5=AE=9A=E4=B9=89?= =?UTF-8?q?=E6=A8=A1=E5=9D=97=E5=AE=89=E8=A3=85=E5=B8=AE=E5=8A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cc0fac8..4da37f1 100644 --- a/README.md +++ b/README.md @@ -100,19 +100,21 @@ QQ交流群:[25452556](https://jq.qq.com/?_wv=1027&k=5pqB0UV) [requirements.txt ](https://github.com/lovesoo/Taffy/blob/master/requirements.txt)中存放了Taffy用到的第三方lib库,可以通过[setup.py](https://github.com/lovesoo/Taffy/blob/master/setup.py)进行最大化、最小化及自定义模块安装配置: ``` - # 默认最大化安装全部模块 + # 默认最大化安装(安装全部模块) $ python setup.py - # -m或--min,最小化安装 + # -m或--min,最小化安装(只安装必须的nose,requests,PyYAML等) $ python setup.py -m # -w或--without A B,不安装模块A,B + # 示例:不安装db redis locust模块 $ python setup.py --without db redis locust # --with A B,在最小化安装基础上,只安装模块A,B + # 示例:只安装db redis locust模块 $ python setup.py --with db redis locust - # --with及--without 支持配置的模块列表为:[redis,security,db,webservice,selenium,locust,hessian] + # 其中,--with及--without选项支持的模块列表为:[redis,security,db,webservice,selenium,locust,hessian] # -h或--help,查看帮助 $ python setup.py -h