-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dev requirements and configuration files;
Refactor downloads and error message for unsupported geometries
- Loading branch information
1 parent
2883a04
commit 731fb7b
Showing
7 changed files
with
146 additions
and
131 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,28 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Debug", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "${file}", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"env": { | ||
"PYTHONPATH": "${workspaceFolder}:${PYTHONPATH}", | ||
"ENV": "development" | ||
} | ||
}, | ||
{ | ||
"name": "Advanced debug", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "${file}", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"env": { | ||
"PYTHONPATH": "${workspaceFolder}:${PYTHONPATH}", | ||
"ENV": "production" | ||
} | ||
} | ||
] | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python: main.py", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "src/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"env": { | ||
"PYTHONPATH": "${workspaceFolder}:${PYTHONPATH}" | ||
} | ||
}, | ||
{ | ||
"name": "Advanced debug", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "${file}", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"env": { | ||
"PYTHONPATH": "${workspaceFolder}:${PYTHONPATH}", | ||
"ENV": "production" | ||
} | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,24 @@ | ||
{ | ||
"python.defaultInterpreterPath": ".venv/bin/python", | ||
"files.exclude": { | ||
"**/__pycache__": true, | ||
".venv": true, | ||
}, | ||
"black-formatter.args": [ | ||
"--line-length", | ||
"100" | ||
], | ||
"black-formatter.showNotification": "off", | ||
"[python]": { | ||
"editor.defaultFormatter": "ms-python.black-formatter", | ||
"editor.formatOnSave": true, | ||
"editor.formatOnPaste": false, | ||
"editor.formatOnType": true, | ||
}, | ||
"python.formatting.provider": "none", | ||
"editor.formatOnSave": true, | ||
"editor.formatOnPaste": false, | ||
"editor.formatOnType": true, | ||
"[html]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"python.defaultInterpreterPath": ".venv/bin/python", | ||
"files.exclude": { | ||
"**/__pycache__": true, | ||
".venv": true | ||
}, | ||
"black-formatter.args": ["--line-length", "100"], | ||
"[python]": { | ||
"editor.defaultFormatter": "ms-python.black-formatter", | ||
"editor.formatOnSave": true, | ||
"editor.formatOnPaste": false, | ||
"editor.formatOnType": true | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.tabSize": 4 | ||
}, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnPaste": false, | ||
"editor.formatOnType": true, | ||
"[html]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,26 @@ | ||
{ | ||
"name": "Export COCO Keypoints", | ||
"type": "app", | ||
"version": "2.0.0", | ||
"description": "Converts Supervisely format to COCO Keypoints", | ||
"categories": [ | ||
"images", | ||
"export" | ||
], | ||
"main_script": "src/main.py", | ||
"headless": true, | ||
"icon": "https://github.com/supervisely-ecosystem/export-coco-keypoints/assets/119248312/c915fbea-a418-4e6b-ab74-899bcb6edd3b", | ||
"icon_cover": true, | ||
"poster": "https://github.com/supervisely-ecosystem/export-coco-keypoints/assets/119248312/5777a6fb-efe5-41c3-93b9-4abe92006b77", | ||
"modal_template": "src/modal.html", | ||
"docker_image": "supervisely/import-export:6.73.162", | ||
"min_instance_version": "6.11.8", | ||
"task_location": "workspace_tasks", | ||
"modal_template_state": { | ||
"allDatasets": true, | ||
"datasets": [], | ||
"selectedFilter": "all", | ||
"selectedOutput": "images" | ||
}, | ||
"context_menu": { | ||
"target": [ | ||
"images_project", | ||
"images_dataset" | ||
], | ||
"context_root": "Download as" | ||
} | ||
} | ||
"name": "Export COCO Keypoints", | ||
"type": "app", | ||
"version": "2.0.0", | ||
"description": "Converts Supervisely format to COCO Keypoints", | ||
"categories": ["images", "export"], | ||
"main_script": "src/main.py", | ||
"headless": true, | ||
"icon": "https://github.com/supervisely-ecosystem/export-coco-keypoints/assets/119248312/c915fbea-a418-4e6b-ab74-899bcb6edd3b", | ||
"icon_cover": true, | ||
"poster": "https://github.com/supervisely-ecosystem/export-coco-keypoints/assets/119248312/5777a6fb-efe5-41c3-93b9-4abe92006b77", | ||
"modal_template": "src/modal.html", | ||
"docker_image": "supervisely/import-export:6.73.259", | ||
"min_instance_version": "6.12.12", | ||
"task_location": "workspace_tasks", | ||
"modal_template_state": { | ||
"allDatasets": true, | ||
"datasets": [], | ||
"selectedFilter": "all", | ||
"selectedOutput": "images" | ||
}, | ||
"context_menu": { | ||
"target": ["images_project", "images_dataset"], | ||
"context_root": "Download as" | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
python-dotenv | ||
supervisely==6.73.162 | ||
supervisely==6.73.259 | ||
# formatter | ||
black | ||
|
||
|
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
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
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