From 91e4c437076bd223b0caa8c05c4e703071a0c2fb Mon Sep 17 00:00:00 2001 From: Nikoletos Konstantinos <47646955+Nikoletos-K@users.noreply.github.com> Date: Wed, 21 Jun 2023 16:36:19 +0300 Subject: [PATCH] restructured codebase for auto pypi release --- .gitignore | 1 + requirements.txt | 23 ------------------- {pyjedai => src/pyjedai}/__init__.py | 0 {pyjedai => src/pyjedai}/block_building.py | 0 {pyjedai => src/pyjedai}/block_cleaning.py | 0 {pyjedai => src/pyjedai}/clustering.py | 0 .../pyjedai}/comparison_cleaning.py | 0 {pyjedai => src/pyjedai}/datamodel.py | 0 {pyjedai => src/pyjedai}/evaluation.py | 0 {pyjedai => src/pyjedai}/joins.py | 0 {pyjedai => src/pyjedai}/logs.py | 0 {pyjedai => src/pyjedai}/matching.py | 0 {pyjedai => src/pyjedai}/utils.py | 0 .../pyjedai}/vector_based_blocking.py | 0 {pyjedai => src/pyjedai}/visualization.py | 0 {pyjedai => src/pyjedai}/workflow.py | 0 16 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 requirements.txt rename {pyjedai => src/pyjedai}/__init__.py (100%) rename {pyjedai => src/pyjedai}/block_building.py (100%) rename {pyjedai => src/pyjedai}/block_cleaning.py (100%) rename {pyjedai => src/pyjedai}/clustering.py (100%) rename {pyjedai => src/pyjedai}/comparison_cleaning.py (100%) rename {pyjedai => src/pyjedai}/datamodel.py (100%) rename {pyjedai => src/pyjedai}/evaluation.py (100%) rename {pyjedai => src/pyjedai}/joins.py (100%) rename {pyjedai => src/pyjedai}/logs.py (100%) rename {pyjedai => src/pyjedai}/matching.py (100%) rename {pyjedai => src/pyjedai}/utils.py (100%) rename {pyjedai => src/pyjedai}/vector_based_blocking.py (100%) rename {pyjedai => src/pyjedai}/visualization.py (100%) rename {pyjedai => src/pyjedai}/workflow.py (100%) diff --git a/.gitignore b/.gitignore index 55faca1..3183829 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ examples/.ipynb_checkpoints/ examples/scripts/.ipynb_checkpoints/ tests/__pycache__/ .hypothesis/unicode_data/11.0.0/charmap.json.gz +src/pyjedai/__pycache__/ diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 5fa69ca..0000000 --- a/requirements.txt +++ /dev/null @@ -1,23 +0,0 @@ -gensim>=4.2.0 -matplotlib>=3.5.2 -matplotlib-inline>=0.1.3 -networkx>2.3 -nltk>=3.7 -numpy>=1.21 -pandas>=0.25.3 -pandas-profiling>=3.2 -pandocfilters>=1.5 -PyYAML>=6.0 -rdflib>=6.1.1 -rdfpandas>=1.1.5 -regex>=2022.6.2 -scipy>=1.7 -seaborn>=0.11 -strsim>=0.0.3 -strsimpy>=0.2.1 -tqdm>=4.64 -transformers>=4.21 -sentence-transformers>=2.2 -faiss-cpu>=1.7 -optuna>=3.0 -py-stringmatching>=0.4 diff --git a/pyjedai/__init__.py b/src/pyjedai/__init__.py similarity index 100% rename from pyjedai/__init__.py rename to src/pyjedai/__init__.py diff --git a/pyjedai/block_building.py b/src/pyjedai/block_building.py similarity index 100% rename from pyjedai/block_building.py rename to src/pyjedai/block_building.py diff --git a/pyjedai/block_cleaning.py b/src/pyjedai/block_cleaning.py similarity index 100% rename from pyjedai/block_cleaning.py rename to src/pyjedai/block_cleaning.py diff --git a/pyjedai/clustering.py b/src/pyjedai/clustering.py similarity index 100% rename from pyjedai/clustering.py rename to src/pyjedai/clustering.py diff --git a/pyjedai/comparison_cleaning.py b/src/pyjedai/comparison_cleaning.py similarity index 100% rename from pyjedai/comparison_cleaning.py rename to src/pyjedai/comparison_cleaning.py diff --git a/pyjedai/datamodel.py b/src/pyjedai/datamodel.py similarity index 100% rename from pyjedai/datamodel.py rename to src/pyjedai/datamodel.py diff --git a/pyjedai/evaluation.py b/src/pyjedai/evaluation.py similarity index 100% rename from pyjedai/evaluation.py rename to src/pyjedai/evaluation.py diff --git a/pyjedai/joins.py b/src/pyjedai/joins.py similarity index 100% rename from pyjedai/joins.py rename to src/pyjedai/joins.py diff --git a/pyjedai/logs.py b/src/pyjedai/logs.py similarity index 100% rename from pyjedai/logs.py rename to src/pyjedai/logs.py diff --git a/pyjedai/matching.py b/src/pyjedai/matching.py similarity index 100% rename from pyjedai/matching.py rename to src/pyjedai/matching.py diff --git a/pyjedai/utils.py b/src/pyjedai/utils.py similarity index 100% rename from pyjedai/utils.py rename to src/pyjedai/utils.py diff --git a/pyjedai/vector_based_blocking.py b/src/pyjedai/vector_based_blocking.py similarity index 100% rename from pyjedai/vector_based_blocking.py rename to src/pyjedai/vector_based_blocking.py diff --git a/pyjedai/visualization.py b/src/pyjedai/visualization.py similarity index 100% rename from pyjedai/visualization.py rename to src/pyjedai/visualization.py diff --git a/pyjedai/workflow.py b/src/pyjedai/workflow.py similarity index 100% rename from pyjedai/workflow.py rename to src/pyjedai/workflow.py