-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.json
29 lines (29 loc) · 804 Bytes
/
setup.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"setup": {
"directory": "~/projects/python",
"message": "Setup python project",
"options": {
"step-1": {
"message": "Installing python...",
"command": "brew install python"
},
"step-2": {
"message": "Installing pip...",
"command": {
"1": "curl -O http://python-distribute.org/distribute_setup.py",
"2": "python distribute_setup.py",
"3": "curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py",
"4": "python get-pip.py"
}
},
"step-3": {
"message": "Installing virtualenv...",
"command": "pip install virtualenv"
},
"step-4": {
"message": "Creating virtual environment...",
"command": "virtualenv venv"
}
}
}
}