Browse Source

adding requirements_dev.txt

pull/108/head
Robert Zajac 6 years ago
parent
commit
e47c4e98fa
  1. 3
      .travis.yml
  2. 3
      README.md
  3. 5
      requirements_dev.txt

3
.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:

3
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

5
requirements_dev.txt

@ -0,0 +1,5 @@
pytest>=3.6
codecov
pytest-cov
pytest-asyncio
pylint
Loading…
Cancel
Save