Skip to content

Commit

Permalink
Update development dependencies in setup.py (asreview#1413)
Browse files Browse the repository at this point in the history
  • Loading branch information
jspaaks authored Apr 24, 2023
1 parent 9b35dfb commit c0c4a3b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Install Python

Install the ASReview package

pip install -e .
pip install -e .[dev]

Start the Python API server with the Flask development environment

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ def get_long_description():
"sbert": ["sentence_transformers"],
"doc2vec": ["gensim"],
"tensorflow": ["tensorflow~=2.0"],
"dev": ["check-manifest"],
"dev": ["black", "check-manifest", "flake8", "flake8-isort", "isort"],
"test": ["coverage", "pytest"],
}
DEPS["all"] = DEPS["sbert"] + DEPS["doc2vec"] + DEPS["dev"]
DEPS["all"] = DEPS["sbert"] + DEPS["doc2vec"]
DEPS["all"] += DEPS["tensorflow"]


Expand Down

0 comments on commit c0c4a3b

Please sign in to comment.