Skip to content

Commit

Permalink
update vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuminjie committed Jan 11, 2020
1 parent 9f628ea commit a128fde
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,43 @@
"openseespy.egg-info"
],
"problemMatcher": []
},
{
"label": "update setuptools",
"type": "shell",
"command": "/data2/Minjie/bin/anaconda3/bin/python3.7",
"args": [
"-m",
"pip",
"install",
"--upgrade",
"setuptools",
"wheel",
"twine"
],
"problemMatcher": []
},
{
"label": "wheel",
"type": "shell",
"command": "/data2/Minjie/bin/anaconda3/bin/python3.7",
"args": [
"setup.py",
"bdist_wheel"
],
"problemMatcher": []
},
{
"label": "upload",
"type": "shell",
"command": "/data2/Minjie/bin/anaconda3/bin/python3.7",
"args": [
"-m",
"twine",
"upload",
"dist/*"
],
"problemMatcher": []
}
]
}

0 comments on commit a128fde

Please sign in to comment.