Skip to content

Commit

Permalink
Adding requirements.txt workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
S1SYPHOS committed May 5, 2019
1 parent db08447 commit 3fa49b2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Cache + compiled files
# Byte-compiled / optimized / DLL files
__pycache__/
*.pyc
*.py[cod]

# Environments
.env

# Gotta fetch 'em all!
/palettes/*/**/*
5 changes: 5 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
beautifulsoup4==4.7.1
bs4==0.0.1
lxml==4.3.3
Pillow==6.0.0
soupsieve==1.9.1
4 changes: 4 additions & 0 deletions setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

# Setting up virtualenv & installing dependencies from `requirements.txt`
virtualenv -p python3 .env && source .env/bin/activate && pip install -r requirements.txt

0 comments on commit 3fa49b2

Please sign in to comment.