From da3446978be76084f6663da6e6beffbf3dbb7a92 Mon Sep 17 00:00:00 2001 From: nguu0123 Date: Thu, 20 Jun 2024 11:05:59 +0300 Subject: [PATCH] move source code outside --- .github/workflows/python-ci.yml | 2 -- .gitignore | 2 +- .pre-commit-config.yaml | 6 +++--- qoa4ml_lib/CHANGELOG.txt => CHANGELOG.txt | 0 qoa4ml_lib/LICENSE.txt => LICENSE.txt | 0 .../template_config}/client_config.yaml | 0 .../template_config}/metric_config.yaml | 0 qoa4ml_lib/dev_note.md => dev_note.md | 0 {qoa4ml_lib/docs => docs}/img/class.png | Bin {qoa4ml_lib/docs => docs}/index.md | 0 qoa4ml_lib/mkdocs.yml => mkdocs.yml | 0 qoa4ml_lib/pyproject.toml => pyproject.toml | 2 +- {qoa4ml_lib/qoa4ml => qoa4ml}/__init__.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/collector/__init__.py | 0 .../qoa4ml => qoa4ml}/collector/amqp_collector.py | 0 .../qoa4ml => qoa4ml}/collector/base_collector.py | 0 .../qoa4ml => qoa4ml}/collector/host_object.py | 0 .../qoa4ml => qoa4ml}/collector/socket_collector.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/config/__init__.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/config/configs.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/connector/__init__.py | 0 .../qoa4ml => qoa4ml}/connector/amqp_connector.py | 0 .../qoa4ml => qoa4ml}/connector/base_connector.py | 0 .../qoa4ml => qoa4ml}/connector/mess_logging.py | 0 .../qoa4ml => qoa4ml}/connector/mqtt_connector.py | 0 .../qoa4ml => qoa4ml}/connector/prom_connector.py | 0 .../qoa4ml => qoa4ml}/connector/socket_connector.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/lang/__init__.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/lang/common_models.py | 0 .../qoa4ml => qoa4ml}/lang/datamodel_enum.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/lang/ml_contract.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/metric.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/metric_mananger.py | 0 .../qoa4ml => qoa4ml}/observability/__init__.py | 0 .../observability/odop_obs/__init__.py | 0 .../observability/odop_obs/common.py | 0 .../odop_obs/config/exporter_config.yaml | 0 .../odop_obs/config/node_aggregator_config.yaml | 0 .../odop_obs/config/process_probe_conf.yaml | 0 .../odop_obs/config/system_probe_conf.yaml | 0 .../odop_obs/config/unit_conversion.yaml | 0 .../observability/odop_obs/embedded_database.py | 0 .../observability/odop_obs/exporter.py | 0 .../observability/odop_obs/node_aggregator.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/probes/__init__.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/probes/dataquality.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/probes/mlquality.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/probes/probe.py | 0 .../probes/process_monitoring_probe.py | 0 .../probes/system_monitoring_probe.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/qoa_client.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/reports/__init__.py | 0 .../qoa4ml => qoa4ml}/reports/abstract_report.py | 0 .../reports/general_application_report.py | 0 .../qoa4ml => qoa4ml}/reports/ml_report_model.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/reports/ml_reports.py | 0 .../reports/resources_report_model.py | 0 .../qoa4ml => qoa4ml}/reports/rohe_reports.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/utils/__init__.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/utils/gpu_utils.py | 0 .../qoa4ml => qoa4ml}/utils/pynvml_forked.py | 0 {qoa4ml_lib/qoa4ml => qoa4ml}/utils/qoa_utils.py | 0 .../qoa4ml => qoa4ml}/utils/repeated_timer.py | 0 qoa4ml_lib/.pylintrc | 3 --- 64 files changed, 5 insertions(+), 10 deletions(-) rename qoa4ml_lib/CHANGELOG.txt => CHANGELOG.txt (100%) rename qoa4ml_lib/LICENSE.txt => LICENSE.txt (100%) rename {qoa4ml_lib/templateConfig => config/template_config}/client_config.yaml (100%) rename {qoa4ml_lib/templateConfig => config/template_config}/metric_config.yaml (100%) rename qoa4ml_lib/dev_note.md => dev_note.md (100%) rename {qoa4ml_lib/docs => docs}/img/class.png (100%) rename {qoa4ml_lib/docs => docs}/index.md (100%) rename qoa4ml_lib/mkdocs.yml => mkdocs.yml (100%) rename qoa4ml_lib/pyproject.toml => pyproject.toml (97%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/__init__.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/collector/__init__.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/collector/amqp_collector.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/collector/base_collector.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/collector/host_object.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/collector/socket_collector.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/config/__init__.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/config/configs.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/connector/__init__.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/connector/amqp_connector.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/connector/base_connector.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/connector/mess_logging.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/connector/mqtt_connector.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/connector/prom_connector.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/connector/socket_connector.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/lang/__init__.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/lang/common_models.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/lang/datamodel_enum.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/lang/ml_contract.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/metric.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/metric_mananger.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/observability/__init__.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/observability/odop_obs/__init__.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/observability/odop_obs/common.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/observability/odop_obs/config/exporter_config.yaml (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/observability/odop_obs/config/node_aggregator_config.yaml (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/observability/odop_obs/config/process_probe_conf.yaml (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/observability/odop_obs/config/system_probe_conf.yaml (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/observability/odop_obs/config/unit_conversion.yaml (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/observability/odop_obs/embedded_database.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/observability/odop_obs/exporter.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/observability/odop_obs/node_aggregator.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/probes/__init__.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/probes/dataquality.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/probes/mlquality.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/probes/probe.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/probes/process_monitoring_probe.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/probes/system_monitoring_probe.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/qoa_client.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/reports/__init__.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/reports/abstract_report.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/reports/general_application_report.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/reports/ml_report_model.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/reports/ml_reports.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/reports/resources_report_model.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/reports/rohe_reports.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/utils/__init__.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/utils/gpu_utils.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/utils/pynvml_forked.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/utils/qoa_utils.py (100%) rename {qoa4ml_lib/qoa4ml => qoa4ml}/utils/repeated_timer.py (100%) delete mode 100644 qoa4ml_lib/.pylintrc diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index f11e03d..e1cb7e0 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -15,8 +15,6 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - cd qoa4ml_lib pip install ".[dev]" - cd .. - uses: pre-commit/action@v3.0.1 diff --git a/.gitignore b/.gitignore index 81bf3fc..3697a47 100644 --- a/.gitignore +++ b/.gitignore @@ -10,7 +10,7 @@ modules/orchestration/temp/ *__pycache__/ # *.pyc .pypirc -qoa4ml_lib/.cache/ +.cache/ *.pyo *.pyd .ipynb_checkpoints/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0c10453..eec42fd 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -21,20 +21,20 @@ repos: rev: 24.3.0 hooks: - id: black - files: ^qoa4ml_lib/.*\.py$ + files: ^qoa4ml/.*\.py$ - repo: https://github.com/PyCQA/isort rev: 5.13.2 hooks: - id: isort - files: ^qoa4ml_lib/.*\.py$ + files: ^qoa4ml/.*\.py$ - repo: https://github.com/charliermarsh/ruff-pre-commit rev: v0.2.0 hooks: - id: ruff args: [--fix] - files: ^qoa4ml_lib/.*\.py$ + files: ^qoa4ml/.*\.py$ - repo: https://github.com/gitleaks/gitleaks rev: v8.16.1 diff --git a/qoa4ml_lib/CHANGELOG.txt b/CHANGELOG.txt similarity index 100% rename from qoa4ml_lib/CHANGELOG.txt rename to CHANGELOG.txt diff --git a/qoa4ml_lib/LICENSE.txt b/LICENSE.txt similarity index 100% rename from qoa4ml_lib/LICENSE.txt rename to LICENSE.txt diff --git a/qoa4ml_lib/templateConfig/client_config.yaml b/config/template_config/client_config.yaml similarity index 100% rename from qoa4ml_lib/templateConfig/client_config.yaml rename to config/template_config/client_config.yaml diff --git a/qoa4ml_lib/templateConfig/metric_config.yaml b/config/template_config/metric_config.yaml similarity index 100% rename from qoa4ml_lib/templateConfig/metric_config.yaml rename to config/template_config/metric_config.yaml diff --git a/qoa4ml_lib/dev_note.md b/dev_note.md similarity index 100% rename from qoa4ml_lib/dev_note.md rename to dev_note.md diff --git a/qoa4ml_lib/docs/img/class.png b/docs/img/class.png similarity index 100% rename from qoa4ml_lib/docs/img/class.png rename to docs/img/class.png diff --git a/qoa4ml_lib/docs/index.md b/docs/index.md similarity index 100% rename from qoa4ml_lib/docs/index.md rename to docs/index.md diff --git a/qoa4ml_lib/mkdocs.yml b/mkdocs.yml similarity index 100% rename from qoa4ml_lib/mkdocs.yml rename to mkdocs.yml diff --git a/qoa4ml_lib/pyproject.toml b/pyproject.toml similarity index 97% rename from qoa4ml_lib/pyproject.toml rename to pyproject.toml index fa8b399..610f31c 100644 --- a/qoa4ml_lib/pyproject.toml +++ b/pyproject.toml @@ -68,7 +68,7 @@ all =["qoa4ml[ml,dev]"] profile = "black" [tool.ruff] -exclude = ["./qoa4ml/utils/pynvml_forked.py"] +exclude = ["qoa4ml/utils/pynvml_forked.py"] [tool.ruff.lint] select = ["F", "C" diff --git a/qoa4ml_lib/qoa4ml/__init__.py b/qoa4ml/__init__.py similarity index 100% rename from qoa4ml_lib/qoa4ml/__init__.py rename to qoa4ml/__init__.py diff --git a/qoa4ml_lib/qoa4ml/collector/__init__.py b/qoa4ml/collector/__init__.py similarity index 100% rename from qoa4ml_lib/qoa4ml/collector/__init__.py rename to qoa4ml/collector/__init__.py diff --git a/qoa4ml_lib/qoa4ml/collector/amqp_collector.py b/qoa4ml/collector/amqp_collector.py similarity index 100% rename from qoa4ml_lib/qoa4ml/collector/amqp_collector.py rename to qoa4ml/collector/amqp_collector.py diff --git a/qoa4ml_lib/qoa4ml/collector/base_collector.py b/qoa4ml/collector/base_collector.py similarity index 100% rename from qoa4ml_lib/qoa4ml/collector/base_collector.py rename to qoa4ml/collector/base_collector.py diff --git a/qoa4ml_lib/qoa4ml/collector/host_object.py b/qoa4ml/collector/host_object.py similarity index 100% rename from qoa4ml_lib/qoa4ml/collector/host_object.py rename to qoa4ml/collector/host_object.py diff --git a/qoa4ml_lib/qoa4ml/collector/socket_collector.py b/qoa4ml/collector/socket_collector.py similarity index 100% rename from qoa4ml_lib/qoa4ml/collector/socket_collector.py rename to qoa4ml/collector/socket_collector.py diff --git a/qoa4ml_lib/qoa4ml/config/__init__.py b/qoa4ml/config/__init__.py similarity index 100% rename from qoa4ml_lib/qoa4ml/config/__init__.py rename to qoa4ml/config/__init__.py diff --git a/qoa4ml_lib/qoa4ml/config/configs.py b/qoa4ml/config/configs.py similarity index 100% rename from qoa4ml_lib/qoa4ml/config/configs.py rename to qoa4ml/config/configs.py diff --git a/qoa4ml_lib/qoa4ml/connector/__init__.py b/qoa4ml/connector/__init__.py similarity index 100% rename from qoa4ml_lib/qoa4ml/connector/__init__.py rename to qoa4ml/connector/__init__.py diff --git a/qoa4ml_lib/qoa4ml/connector/amqp_connector.py b/qoa4ml/connector/amqp_connector.py similarity index 100% rename from qoa4ml_lib/qoa4ml/connector/amqp_connector.py rename to qoa4ml/connector/amqp_connector.py diff --git a/qoa4ml_lib/qoa4ml/connector/base_connector.py b/qoa4ml/connector/base_connector.py similarity index 100% rename from qoa4ml_lib/qoa4ml/connector/base_connector.py rename to qoa4ml/connector/base_connector.py diff --git a/qoa4ml_lib/qoa4ml/connector/mess_logging.py b/qoa4ml/connector/mess_logging.py similarity index 100% rename from qoa4ml_lib/qoa4ml/connector/mess_logging.py rename to qoa4ml/connector/mess_logging.py diff --git a/qoa4ml_lib/qoa4ml/connector/mqtt_connector.py b/qoa4ml/connector/mqtt_connector.py similarity index 100% rename from qoa4ml_lib/qoa4ml/connector/mqtt_connector.py rename to qoa4ml/connector/mqtt_connector.py diff --git a/qoa4ml_lib/qoa4ml/connector/prom_connector.py b/qoa4ml/connector/prom_connector.py similarity index 100% rename from qoa4ml_lib/qoa4ml/connector/prom_connector.py rename to qoa4ml/connector/prom_connector.py diff --git a/qoa4ml_lib/qoa4ml/connector/socket_connector.py b/qoa4ml/connector/socket_connector.py similarity index 100% rename from qoa4ml_lib/qoa4ml/connector/socket_connector.py rename to qoa4ml/connector/socket_connector.py diff --git a/qoa4ml_lib/qoa4ml/lang/__init__.py b/qoa4ml/lang/__init__.py similarity index 100% rename from qoa4ml_lib/qoa4ml/lang/__init__.py rename to qoa4ml/lang/__init__.py diff --git a/qoa4ml_lib/qoa4ml/lang/common_models.py b/qoa4ml/lang/common_models.py similarity index 100% rename from qoa4ml_lib/qoa4ml/lang/common_models.py rename to qoa4ml/lang/common_models.py diff --git a/qoa4ml_lib/qoa4ml/lang/datamodel_enum.py b/qoa4ml/lang/datamodel_enum.py similarity index 100% rename from qoa4ml_lib/qoa4ml/lang/datamodel_enum.py rename to qoa4ml/lang/datamodel_enum.py diff --git a/qoa4ml_lib/qoa4ml/lang/ml_contract.py b/qoa4ml/lang/ml_contract.py similarity index 100% rename from qoa4ml_lib/qoa4ml/lang/ml_contract.py rename to qoa4ml/lang/ml_contract.py diff --git a/qoa4ml_lib/qoa4ml/metric.py b/qoa4ml/metric.py similarity index 100% rename from qoa4ml_lib/qoa4ml/metric.py rename to qoa4ml/metric.py diff --git a/qoa4ml_lib/qoa4ml/metric_mananger.py b/qoa4ml/metric_mananger.py similarity index 100% rename from qoa4ml_lib/qoa4ml/metric_mananger.py rename to qoa4ml/metric_mananger.py diff --git a/qoa4ml_lib/qoa4ml/observability/__init__.py b/qoa4ml/observability/__init__.py similarity index 100% rename from qoa4ml_lib/qoa4ml/observability/__init__.py rename to qoa4ml/observability/__init__.py diff --git a/qoa4ml_lib/qoa4ml/observability/odop_obs/__init__.py b/qoa4ml/observability/odop_obs/__init__.py similarity index 100% rename from qoa4ml_lib/qoa4ml/observability/odop_obs/__init__.py rename to qoa4ml/observability/odop_obs/__init__.py diff --git a/qoa4ml_lib/qoa4ml/observability/odop_obs/common.py b/qoa4ml/observability/odop_obs/common.py similarity index 100% rename from qoa4ml_lib/qoa4ml/observability/odop_obs/common.py rename to qoa4ml/observability/odop_obs/common.py diff --git a/qoa4ml_lib/qoa4ml/observability/odop_obs/config/exporter_config.yaml b/qoa4ml/observability/odop_obs/config/exporter_config.yaml similarity index 100% rename from qoa4ml_lib/qoa4ml/observability/odop_obs/config/exporter_config.yaml rename to qoa4ml/observability/odop_obs/config/exporter_config.yaml diff --git a/qoa4ml_lib/qoa4ml/observability/odop_obs/config/node_aggregator_config.yaml b/qoa4ml/observability/odop_obs/config/node_aggregator_config.yaml similarity index 100% rename from qoa4ml_lib/qoa4ml/observability/odop_obs/config/node_aggregator_config.yaml rename to qoa4ml/observability/odop_obs/config/node_aggregator_config.yaml diff --git a/qoa4ml_lib/qoa4ml/observability/odop_obs/config/process_probe_conf.yaml b/qoa4ml/observability/odop_obs/config/process_probe_conf.yaml similarity index 100% rename from qoa4ml_lib/qoa4ml/observability/odop_obs/config/process_probe_conf.yaml rename to qoa4ml/observability/odop_obs/config/process_probe_conf.yaml diff --git a/qoa4ml_lib/qoa4ml/observability/odop_obs/config/system_probe_conf.yaml b/qoa4ml/observability/odop_obs/config/system_probe_conf.yaml similarity index 100% rename from qoa4ml_lib/qoa4ml/observability/odop_obs/config/system_probe_conf.yaml rename to qoa4ml/observability/odop_obs/config/system_probe_conf.yaml diff --git a/qoa4ml_lib/qoa4ml/observability/odop_obs/config/unit_conversion.yaml b/qoa4ml/observability/odop_obs/config/unit_conversion.yaml similarity index 100% rename from qoa4ml_lib/qoa4ml/observability/odop_obs/config/unit_conversion.yaml rename to qoa4ml/observability/odop_obs/config/unit_conversion.yaml diff --git a/qoa4ml_lib/qoa4ml/observability/odop_obs/embedded_database.py b/qoa4ml/observability/odop_obs/embedded_database.py similarity index 100% rename from qoa4ml_lib/qoa4ml/observability/odop_obs/embedded_database.py rename to qoa4ml/observability/odop_obs/embedded_database.py diff --git a/qoa4ml_lib/qoa4ml/observability/odop_obs/exporter.py b/qoa4ml/observability/odop_obs/exporter.py similarity index 100% rename from qoa4ml_lib/qoa4ml/observability/odop_obs/exporter.py rename to qoa4ml/observability/odop_obs/exporter.py diff --git a/qoa4ml_lib/qoa4ml/observability/odop_obs/node_aggregator.py b/qoa4ml/observability/odop_obs/node_aggregator.py similarity index 100% rename from qoa4ml_lib/qoa4ml/observability/odop_obs/node_aggregator.py rename to qoa4ml/observability/odop_obs/node_aggregator.py diff --git a/qoa4ml_lib/qoa4ml/probes/__init__.py b/qoa4ml/probes/__init__.py similarity index 100% rename from qoa4ml_lib/qoa4ml/probes/__init__.py rename to qoa4ml/probes/__init__.py diff --git a/qoa4ml_lib/qoa4ml/probes/dataquality.py b/qoa4ml/probes/dataquality.py similarity index 100% rename from qoa4ml_lib/qoa4ml/probes/dataquality.py rename to qoa4ml/probes/dataquality.py diff --git a/qoa4ml_lib/qoa4ml/probes/mlquality.py b/qoa4ml/probes/mlquality.py similarity index 100% rename from qoa4ml_lib/qoa4ml/probes/mlquality.py rename to qoa4ml/probes/mlquality.py diff --git a/qoa4ml_lib/qoa4ml/probes/probe.py b/qoa4ml/probes/probe.py similarity index 100% rename from qoa4ml_lib/qoa4ml/probes/probe.py rename to qoa4ml/probes/probe.py diff --git a/qoa4ml_lib/qoa4ml/probes/process_monitoring_probe.py b/qoa4ml/probes/process_monitoring_probe.py similarity index 100% rename from qoa4ml_lib/qoa4ml/probes/process_monitoring_probe.py rename to qoa4ml/probes/process_monitoring_probe.py diff --git a/qoa4ml_lib/qoa4ml/probes/system_monitoring_probe.py b/qoa4ml/probes/system_monitoring_probe.py similarity index 100% rename from qoa4ml_lib/qoa4ml/probes/system_monitoring_probe.py rename to qoa4ml/probes/system_monitoring_probe.py diff --git a/qoa4ml_lib/qoa4ml/qoa_client.py b/qoa4ml/qoa_client.py similarity index 100% rename from qoa4ml_lib/qoa4ml/qoa_client.py rename to qoa4ml/qoa_client.py diff --git a/qoa4ml_lib/qoa4ml/reports/__init__.py b/qoa4ml/reports/__init__.py similarity index 100% rename from qoa4ml_lib/qoa4ml/reports/__init__.py rename to qoa4ml/reports/__init__.py diff --git a/qoa4ml_lib/qoa4ml/reports/abstract_report.py b/qoa4ml/reports/abstract_report.py similarity index 100% rename from qoa4ml_lib/qoa4ml/reports/abstract_report.py rename to qoa4ml/reports/abstract_report.py diff --git a/qoa4ml_lib/qoa4ml/reports/general_application_report.py b/qoa4ml/reports/general_application_report.py similarity index 100% rename from qoa4ml_lib/qoa4ml/reports/general_application_report.py rename to qoa4ml/reports/general_application_report.py diff --git a/qoa4ml_lib/qoa4ml/reports/ml_report_model.py b/qoa4ml/reports/ml_report_model.py similarity index 100% rename from qoa4ml_lib/qoa4ml/reports/ml_report_model.py rename to qoa4ml/reports/ml_report_model.py diff --git a/qoa4ml_lib/qoa4ml/reports/ml_reports.py b/qoa4ml/reports/ml_reports.py similarity index 100% rename from qoa4ml_lib/qoa4ml/reports/ml_reports.py rename to qoa4ml/reports/ml_reports.py diff --git a/qoa4ml_lib/qoa4ml/reports/resources_report_model.py b/qoa4ml/reports/resources_report_model.py similarity index 100% rename from qoa4ml_lib/qoa4ml/reports/resources_report_model.py rename to qoa4ml/reports/resources_report_model.py diff --git a/qoa4ml_lib/qoa4ml/reports/rohe_reports.py b/qoa4ml/reports/rohe_reports.py similarity index 100% rename from qoa4ml_lib/qoa4ml/reports/rohe_reports.py rename to qoa4ml/reports/rohe_reports.py diff --git a/qoa4ml_lib/qoa4ml/utils/__init__.py b/qoa4ml/utils/__init__.py similarity index 100% rename from qoa4ml_lib/qoa4ml/utils/__init__.py rename to qoa4ml/utils/__init__.py diff --git a/qoa4ml_lib/qoa4ml/utils/gpu_utils.py b/qoa4ml/utils/gpu_utils.py similarity index 100% rename from qoa4ml_lib/qoa4ml/utils/gpu_utils.py rename to qoa4ml/utils/gpu_utils.py diff --git a/qoa4ml_lib/qoa4ml/utils/pynvml_forked.py b/qoa4ml/utils/pynvml_forked.py similarity index 100% rename from qoa4ml_lib/qoa4ml/utils/pynvml_forked.py rename to qoa4ml/utils/pynvml_forked.py diff --git a/qoa4ml_lib/qoa4ml/utils/qoa_utils.py b/qoa4ml/utils/qoa_utils.py similarity index 100% rename from qoa4ml_lib/qoa4ml/utils/qoa_utils.py rename to qoa4ml/utils/qoa_utils.py diff --git a/qoa4ml_lib/qoa4ml/utils/repeated_timer.py b/qoa4ml/utils/repeated_timer.py similarity index 100% rename from qoa4ml_lib/qoa4ml/utils/repeated_timer.py rename to qoa4ml/utils/repeated_timer.py diff --git a/qoa4ml_lib/.pylintrc b/qoa4ml_lib/.pylintrc deleted file mode 100644 index c0a83f8..0000000 --- a/qoa4ml_lib/.pylintrc +++ /dev/null @@ -1,3 +0,0 @@ -[MASTER] -extension-pkg-whitelist=pydantic -disable=missing-docstring