Skip to content

Commit 19fb267

Browse files
committed
Set up virtualenv
1 parent 47e0b47 commit 19fb267

File tree

3 files changed

+41
-3
lines changed

3 files changed

+41
-3
lines changed

‎.vscode/settings.json‎

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
{
2-
"files.associations": {
3-
"iostream": "cpp"
4-
}
2+
"python.venvPath": "${workspaceRoot}/venv"
53
}

‎venv/.gitignore‎

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
########################
2+
# Virtualenv gitignore #
3+
########################
4+
5+
# Virtualenv
6+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
7+
.Python
8+
[Bb]in
9+
[Ii]nclude
10+
[Ll]ib
11+
[Ll]ib64
12+
[Ll]ocal
13+
[Ss]cripts
14+
pyvenv.cfg
15+
.venv
16+
pip-selfcheck.json
17+
18+
######################
19+
# Selenium gitignore #
20+
######################
21+
22+
selenium/webdriver/firefox/amd64/
23+
selenium/webdriver/firefox/x86/
24+
selenium/webdriver/remote/getAttribute.js
25+
selenium/webdriver/remote/isDisplayed.js

‎venv/requirements.txt‎

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
appdirs==1.4.3
2+
astroid==1.4.9
3+
backports.functools-lru-cache==1.3
4+
beautifulsoup4==4.5.3
5+
configparser==3.5.0
6+
isort==4.2.5
7+
lazy-object-proxy==1.2.2
8+
lxml==3.7.3
9+
mccabe==0.6.1
10+
packaging==16.8
11+
pylint==1.6.5
12+
pyparsing==2.2.0
13+
selenium==3.3.1
14+
six==1.10.0
15+
wrapt==1.10.10

0 commit comments

Comments
 (0)