diff --git a/.gitignore b/.gitignore index aebe263..135b204 100644 --- a/.gitignore +++ b/.gitignore @@ -160,7 +160,15 @@ crashlytics-build.properties fabric.properties +# https://raw.githubusercontent.com/github/gitignore/master/Global/VisualStudioCode.gitignore +.vscode/* +# !.vscode/settings.json # contains machine-specific python interpreter paths +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +# Project-specific *-cprofile-* *.ipynb .directory diff --git a/pyproject.toml b/pyproject.toml index a3ff91d..2df3dc5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,6 +30,15 @@ codecov = "^2.0" [tool.poetry.scripts] corr = 'corrscope.cli:main' +run = 'scripts:run' +dcover = 'scripts:dcover' +rcover = 'scripts:rcover' +hcover = 'scripts:hcover' +cover = 'scripts:cover' +diff = 'scripts:diff' +report = 'scripts:report' +html = 'scripts:html' + [tool.black] line-length = 88 py36 = true @@ -37,5 +46,3 @@ exclude = 'utils/scipy_' [build-system] requires = ["poetry>=0.12"] build-backend = "poetry.masonry.api" - -