Skip to content

Instantly share code, notes, and snippets.

@iKlotho
Created July 9, 2021 12:52
Show Gist options
  • Save iKlotho/2794126418b463ae110dfcbb7d4b5fbd to your computer and use it in GitHub Desktop.
Save iKlotho/2794126418b463ae110dfcbb7d4b5fbd to your computer and use it in GitHub Desktop.
VSCODE Python Package Dev- Task
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build package",
"command": "${config:python.pythonPath} setup.py sdist",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
},
{
"label": "Install package",
"command": "${config:python.pythonPath} -m pip install dist/lite-core-0.0.1.tar.gz",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": ["Build package"]
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment