Created
July 9, 2021 12:52
-
-
Save iKlotho/2794126418b463ae110dfcbb7d4b5fbd to your computer and use it in GitHub Desktop.
VSCODE Python Package Dev- Task
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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