diff --git a/README.md b/README.md index 67cf5d2585ec96bbaac7bfef027169c14a553cfe..49fedc57b7f0a12bbd297666389bc44c82c3d4aa 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ -# DBREPO-ISMIR - -## Description -A Repository that shows the usage of the DBRepo and Invenio platforms to create a genre prediction SVM and make its results reproducible. +# FAIRNB +A Repository for FAIR data handling in Jupyter Notebooks. +It shows the usage of the DBRepo and Invenio platforms to create a genre prediction SVM and make its results reproducible. ## Installation Install poetry via pip or conda and run diff --git a/dbrepo_ismir/__init__.py b/fairnb/__init__.py similarity index 100% rename from dbrepo_ismir/__init__.py rename to fairnb/__init__.py diff --git a/dbrepo_ismir/api/__init__.py b/fairnb/api/__init__.py similarity index 100% rename from dbrepo_ismir/api/__init__.py rename to fairnb/api/__init__.py diff --git a/dbrepo_ismir/api/dbrepo.py b/fairnb/api/dbrepo.py similarity index 100% rename from dbrepo_ismir/api/dbrepo.py rename to fairnb/api/dbrepo.py diff --git a/dbrepo_ismir/api/invenio.py b/fairnb/api/invenio.py similarity index 100% rename from dbrepo_ismir/api/invenio.py rename to fairnb/api/invenio.py diff --git a/dbrepo_ismir/entity/__init__.py b/fairnb/entity/__init__.py similarity index 100% rename from dbrepo_ismir/entity/__init__.py rename to fairnb/entity/__init__.py diff --git a/dbrepo_ismir/entity/dbrepo_entity.py b/fairnb/entity/dbrepo_entity.py similarity index 100% rename from dbrepo_ismir/entity/dbrepo_entity.py rename to fairnb/entity/dbrepo_entity.py diff --git a/dbrepo_ismir/entity/entity.py b/fairnb/entity/entity.py similarity index 100% rename from dbrepo_ismir/entity/entity.py rename to fairnb/entity/entity.py diff --git a/dbrepo_ismir/entity/entity_provenance.py b/fairnb/entity/entity_provenance.py similarity index 100% rename from dbrepo_ismir/entity/entity_provenance.py rename to fairnb/entity/entity_provenance.py diff --git a/dbrepo_ismir/entity/invenio_entity.py b/fairnb/entity/invenio_entity.py similarity index 100% rename from dbrepo_ismir/entity/invenio_entity.py rename to fairnb/entity/invenio_entity.py diff --git a/dbrepo_ismir/entity/repositum_entity.py b/fairnb/entity/repositum_entity.py similarity index 100% rename from dbrepo_ismir/entity/repositum_entity.py rename to fairnb/entity/repositum_entity.py diff --git a/dbrepo_ismir/executor.py b/fairnb/executor.py similarity index 100% rename from dbrepo_ismir/executor.py rename to fairnb/executor.py diff --git a/dbrepo_ismir/ml.py b/fairnb/ml.py similarity index 100% rename from dbrepo_ismir/ml.py rename to fairnb/ml.py diff --git a/dbrepo_ismir/nb_config.py b/fairnb/nb_config.py similarity index 100% rename from dbrepo_ismir/nb_config.py rename to fairnb/nb_config.py diff --git a/dbrepo_ismir/util.py b/fairnb/util.py similarity index 100% rename from dbrepo_ismir/util.py rename to fairnb/util.py diff --git a/pyproject.toml b/pyproject.toml index d671367e2f9ac1dac7173703bcff7e4b05a10c84..3f2b05f1dea29207ede75eb1d201de910d34e4e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "" authors = ["Lukas Mahler <e11908553@student.tuwien.ac.at>"] readme = "README.md" -packages = [{include = "dbrepo_ismir"}] +packages = [{include = "fairnb"}] [tool.poetry.dependencies] python = "3.10.*"