This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
-
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.
feat: update metadata and project structure
- Loading branch information
1 parent
eda940a
commit 2160970
Showing
27 changed files
with
1,372 additions
and
1,307 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
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,19 +1,19 @@ | ||
[tool.poetry] | ||
name = "safe-ds-examples" | ||
version = "0.17.1" | ||
description = "Ready-to-use examples for the Safe-DS Python library." | ||
name = "safe-ds-datasets" | ||
version = "0.18.0" | ||
description = "Ready-to-use datasets for the Safe-DS Python library." | ||
license = "MIT" | ||
authors = ["Lars Reimann <[email protected]>"] | ||
readme = "docs/README.md" | ||
repository = "https://github.com/Safe-DS/Library-Examples" | ||
documentation = "https://library-examples.safe-ds.com" | ||
keywords = ["data-science", "machine-learning", "usability", "learnability"] | ||
repository = "https://github.com/Safe-DS/Datasets" | ||
documentation = "https://datasets.safe-ds.com" | ||
keywords = ["data-science", "datasets", "machine-learning"] | ||
packages = [ | ||
{ include = "safeds_examples", from = "src" }, | ||
{ include = "safeds_datasets", from = "src" }, | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11,<3.12" | ||
python = "^3.11,<3.13" | ||
safe-ds = ">=0.17,<0.22" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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 @@ | ||
"""Classes that can store tabular data.""" | ||
|
||
from ._tabular_dataset import TabularDataset | ||
|
||
__all__ = ["TabularDataset"] |
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 was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
.../tabular/_house_sales/test_house_sales.py → .../tabular/_house_sales/test_house_sales.py
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...examples/tabular/_titanic/test_titanic.py → ...datasets/tabular/_titanic/test_titanic.py
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
File renamed without changes.
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