forked from talkpython/mastering-pycharm-course
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Combine all the requirements across all the projects into a single on…
…e that people can optionally install.
- Loading branch information
1 parent
78d5bfd
commit aee8524
Showing
1 changed file
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,26 @@ | ||
# This file contains all the required packages for the course | ||
# You don't need to install it, but it's here as a convenience. | ||
# Many sample projects have their own requirements.txt files | ||
# and sometimes instructions suggest you use pip to install a library | ||
# But if you want to avoid those steps and you use a single virtual | ||
# environment for the course, just install this via: | ||
# pip install -r requirements.txt | ||
# In your terminal with the environment activated. | ||
|
||
alembic | ||
flask | ||
jupyter | ||
jupyterlab | ||
matplotlib | ||
numpy | ||
sqlalchemy | ||
requests | ||
pandas | ||
passlib | ||
progressbar2 | ||
pytest | ||
pytest-clarity | ||
pytest-cov | ||
python-dateutil | ||
requests | ||
sqlalchemy | ||
webtest | ||
werkzeug |