From a82d67310140c0b63010afb79dc94dbd8970b3f9 Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Apr 04 2021 21:14:59 +0000 Subject: Merge #9 `Added requirements.txt file` --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6760c2b --- /dev/null +++ b/.gitignore @@ -0,0 +1,58 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# JetBrains IDEs settings +.idea/ + +# VisualStudioCode settings +.vscode/ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..8b6bc20 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,7 @@ +fedmsg==1.1.2 +matplotlib==3.4.1 +numpy==1.20.2 +pandas==1.2.3 +requests==2.25.1 +pytz==2021.1 +pytest==6.2.2 \ No newline at end of file