Skip to content

Instantly share code, notes, and snippets.

@jattoabdul
Last active July 10, 2018 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jattoabdul/e96fad52388038a1de3b2e242fb69956 to your computer and use it in GitHub Desktop.
Save jattoabdul/e96fad52388038a1de3b2e242fb69956 to your computer and use it in GitHub Desktop.
A package requirements file for a python slack notification bot tutorial
asn1crypto==0.24.0
certifi==2018.4.16
cffi==1.11.5
chardet==3.0.4
click==6.7
cryptography==2.2.2
Flask==1.0.2
Flask-API==1.0
gspread==3.0.0
gunicorn==19.8.1
httplib2==0.11.3
idna==2.6
itsdangerous==0.24
Jinja2==2.10
MarkupSafe==1.0
oauth2client==4.1.2
pyasn1==0.4.3
pyasn1-modules==0.2.1
pycparser==2.18
pyOpenSSL==18.0.0
python-dotenv==0.8.2
requests==2.18.4
rsa==3.4.2
six==1.11.0
slackclient==1.2.1
urllib3==1.22
websocket-client==0.48.0
Werkzeug==0.14.1
#!/usr/bin/env bash
#------
#STEPS
#------
mkdir folderName # Create a new folder for the application
cd folderName # Change directory into your folder
mkvirtualenv renv # Create a virtual env
source renv/bin/activate # Activate your virtual env
mkdir project # Create a folder called project.
cd project # Change directory into the project folder
touch requirements.txt # Create a requirements.txt file inside the project folder
# Copy the content of the requirements.txt file above (https://gist.github.com/jattoabdul/e96fad52388038a1de3b2e242fb69956#file-requirements-txt).
$pip install -r requirements.txt # Install the packages required listed in the requirements file.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment