From e47c4e98fa8f73ec2edcd8957c5b7dd55f8b1702 Mon Sep 17 00:00:00 2001 From: Robert Zajac Date: Thu, 10 Jan 2019 19:44:24 -0500 Subject: [PATCH] adding requirements_dev.txt --- .travis.yml | 3 +-- README.md | 3 ++- requirements_dev.txt | 5 +++++ 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 requirements_dev.txt diff --git a/.travis.yml b/.travis.yml index 95880338..d4cfd69b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,8 +5,7 @@ python: install: - pip install --upgrade pip - - pip install "pytest>=3.6" - - pip install codecov pytest-cov pytest-asyncio pylint + - pip install -r requirements_dev.txt - python setup.py develop script: diff --git a/README.md b/README.md index c052c922..5f9b3d81 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,8 @@ py-libp2p requires Python 3.6 and the best way to guarantee a clean Python 3.6 e ```sh virtualenv -p python3.6 venv . venv/bin/activate -pip3 install -r requirements.txt +pip3 install -r requirements_dev.txt +python setup.py develop ``` ## Testing diff --git a/requirements_dev.txt b/requirements_dev.txt new file mode 100644 index 00000000..9dd12567 --- /dev/null +++ b/requirements_dev.txt @@ -0,0 +1,5 @@ +pytest>=3.6 +codecov +pytest-cov +pytest-asyncio +pylint