-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- SAND CLI can import dataset returned from a python function
- SAND CLI create project command does not require project's description (default to use dataset name)
- Loading branch information
Binh Vu
committed
Apr 13, 2024
1 parent
0c540ca
commit 145a713
Showing
6 changed files
with
32 additions
and
8 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
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,13 +1,13 @@ | ||
[tool.poetry] | ||
name = "web-sand" | ||
version = "4.0.2" | ||
version = "4.1.0" | ||
description = "UI for browsing/editing semantic descriptions" | ||
authors = ["Binh Vu <[email protected]>"] | ||
repository = "https://github.com/usc-isi-i2/sand" | ||
license = "MIT" | ||
packages = [{ include = "sand" }] | ||
readme = "README.md" | ||
include = ["sand/www/**/*"] | ||
# include = ["sand/www/**/*"] | ||
|
||
[tool.poetry.scripts] | ||
sand = 'sand.__main__:cli' | ||
|
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
Empty file.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from sm_datasets.datasets import Datasets | ||
|
||
|
||
def load(dataset: str): | ||
return Datasets().get_dataset(dataset) |