Skip to content

Commit

Permalink
Merge pull request #251 from hhursev/requirements-refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
jayaddison committed Oct 28, 2020
2 parents 16981c3 + b33de89 commit 05b01f4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ python:
- "3.8"

install:
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- pip install coveralls

script:
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include LICENSE
include README.md

exclude requirements.txt
exclude requirements-dev.txt
recursive-exclude tests *
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ Assuming you have ``python3`` installed, navigate to the directory where you wan
cd recipe-scrapers &&
python3 -m venv .venv &&
source .venv/bin/activate &&
pip install -r requirements.txt &&
pip install -r requirements-dev.txt &&
pre-commit install &&
python -m coverage run -m unittest &&
python -m coverage report
Expand Down
10 changes: 3 additions & 7 deletions requirements.txt → requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
beautifulsoup4>=4.6.0
coverage>=4.5.1
extruct>=0.8.0
language-tags>=1.0.0
requests>=2.19.1
tldextract==2.2.2
pre-commit>=2.6.0
-e .
black>=19.10b0
coverage>=4.5.1
flake8>=3.8.3
flake8-printf-formatting>=1.1.0
pre-commit>=2.6.0
pytest>=6.1.1

0 comments on commit 05b01f4

Please sign in to comment.