From 2f43eefa2757651907d6c572a5fe6e563ef431cc Mon Sep 17 00:00:00 2001 From: Ilya Sytchev Date: Fri, 13 Dec 2024 11:12:15 -0500 Subject: [PATCH] Move forest package to src --- {forest => src/forest}/__init__.py | 0 {forest => src/forest}/bonsai/__init__.py | 0 {forest => src/forest}/bonsai/simulate_gps_data.py | 0 {forest => src/forest}/bonsai/simulate_log_data.py | 0 {forest => src/forest}/constants.py | 0 {forest => src/forest}/jasmine/__init__.py | 0 {forest => src/forest}/jasmine/data2mobmat.py | 0 {forest => src/forest}/jasmine/mobmat2traj.py | 0 {forest => src/forest}/jasmine/sogp_gps.py | 0 {forest => src/forest}/jasmine/traj2stats.py | 0 {forest => src/forest}/oak/__init__.py | 0 {forest => src/forest}/oak/base.py | 0 {forest => src/forest}/poplar/__init__.py | 0 {forest => src/forest}/poplar/classes/__init__.py | 0 {forest => src/forest}/poplar/classes/history.py | 0 {forest => src/forest}/poplar/classes/registry.py | 0 {forest => src/forest}/poplar/classes/template.py | 0 {forest => src/forest}/poplar/classes/trackers.py | 0 {forest => src/forest}/poplar/constants/__init__.py | 0 {forest => src/forest}/poplar/constants/misc.py | 0 {forest => src/forest}/poplar/constants/time.py | 0 {forest => src/forest}/poplar/functions/__init__.py | 0 {forest => src/forest}/poplar/functions/helpers.py | 0 {forest => src/forest}/poplar/functions/holidays.py | 0 {forest => src/forest}/poplar/functions/io.py | 0 {forest => src/forest}/poplar/functions/log.py | 0 {forest => src/forest}/poplar/functions/time.py | 0 {forest => src/forest}/poplar/functions/timezone.py | 0 {forest => src/forest}/poplar/legacy/__init__.py | 0 {forest => src/forest}/poplar/legacy/common_funcs.py | 0 {forest => src/forest}/poplar/raw/__init__.py | 0 {forest => src/forest}/poplar/raw/doc.py | 0 {forest => src/forest}/poplar/raw/noncode/data_streams.csv | 0 {forest => src/forest}/poplar/raw/noncode/headers.json | 0 {forest => src/forest}/poplar/raw/noncode/power_events.csv | 0 .../forest}/poplar/raw/noncode/question_type_names.json | 0 {forest => src/forest}/poplar/raw/readers.py | 0 {forest => src/forest}/sycamore/__init__.py | 0 {forest => src/forest}/sycamore/__main__.py | 0 {forest => src/forest}/sycamore/base.py | 0 {forest => src/forest}/sycamore/common.py | 0 {forest => src/forest}/sycamore/constants.py | 0 {forest => src/forest}/sycamore/read_audio.py | 0 {forest => src/forest}/sycamore/responses.py | 0 {forest => src/forest}/sycamore/submits.py | 0 {forest => src/forest}/sycamore/utils.py | 0 {forest => src/forest}/utils.py | 0 {forest => src/forest}/willow/__init__.py | 0 {forest => src/forest}/willow/log_stats.py | 0 49 files changed, 0 insertions(+), 0 deletions(-) rename {forest => src/forest}/__init__.py (100%) rename {forest => src/forest}/bonsai/__init__.py (100%) rename {forest => src/forest}/bonsai/simulate_gps_data.py (100%) rename {forest => src/forest}/bonsai/simulate_log_data.py (100%) rename {forest => src/forest}/constants.py (100%) rename {forest => src/forest}/jasmine/__init__.py (100%) rename {forest => src/forest}/jasmine/data2mobmat.py (100%) rename {forest => src/forest}/jasmine/mobmat2traj.py (100%) rename {forest => src/forest}/jasmine/sogp_gps.py (100%) rename {forest => src/forest}/jasmine/traj2stats.py (100%) rename {forest => src/forest}/oak/__init__.py (100%) rename {forest => src/forest}/oak/base.py (100%) rename {forest => src/forest}/poplar/__init__.py (100%) rename {forest => src/forest}/poplar/classes/__init__.py (100%) rename {forest => src/forest}/poplar/classes/history.py (100%) rename {forest => src/forest}/poplar/classes/registry.py (100%) rename {forest => src/forest}/poplar/classes/template.py (100%) rename {forest => src/forest}/poplar/classes/trackers.py (100%) rename {forest => src/forest}/poplar/constants/__init__.py (100%) rename {forest => src/forest}/poplar/constants/misc.py (100%) rename {forest => src/forest}/poplar/constants/time.py (100%) rename {forest => src/forest}/poplar/functions/__init__.py (100%) rename {forest => src/forest}/poplar/functions/helpers.py (100%) rename {forest => src/forest}/poplar/functions/holidays.py (100%) rename {forest => src/forest}/poplar/functions/io.py (100%) rename {forest => src/forest}/poplar/functions/log.py (100%) rename {forest => src/forest}/poplar/functions/time.py (100%) rename {forest => src/forest}/poplar/functions/timezone.py (100%) rename {forest => src/forest}/poplar/legacy/__init__.py (100%) rename {forest => src/forest}/poplar/legacy/common_funcs.py (100%) rename {forest => src/forest}/poplar/raw/__init__.py (100%) rename {forest => src/forest}/poplar/raw/doc.py (100%) rename {forest => src/forest}/poplar/raw/noncode/data_streams.csv (100%) rename {forest => src/forest}/poplar/raw/noncode/headers.json (100%) rename {forest => src/forest}/poplar/raw/noncode/power_events.csv (100%) rename {forest => src/forest}/poplar/raw/noncode/question_type_names.json (100%) rename {forest => src/forest}/poplar/raw/readers.py (100%) rename {forest => src/forest}/sycamore/__init__.py (100%) rename {forest => src/forest}/sycamore/__main__.py (100%) rename {forest => src/forest}/sycamore/base.py (100%) rename {forest => src/forest}/sycamore/common.py (100%) rename {forest => src/forest}/sycamore/constants.py (100%) rename {forest => src/forest}/sycamore/read_audio.py (100%) rename {forest => src/forest}/sycamore/responses.py (100%) rename {forest => src/forest}/sycamore/submits.py (100%) rename {forest => src/forest}/sycamore/utils.py (100%) rename {forest => src/forest}/utils.py (100%) rename {forest => src/forest}/willow/__init__.py (100%) rename {forest => src/forest}/willow/log_stats.py (100%) diff --git a/forest/__init__.py b/src/forest/__init__.py similarity index 100% rename from forest/__init__.py rename to src/forest/__init__.py diff --git a/forest/bonsai/__init__.py b/src/forest/bonsai/__init__.py similarity index 100% rename from forest/bonsai/__init__.py rename to src/forest/bonsai/__init__.py diff --git a/forest/bonsai/simulate_gps_data.py b/src/forest/bonsai/simulate_gps_data.py similarity index 100% rename from forest/bonsai/simulate_gps_data.py rename to src/forest/bonsai/simulate_gps_data.py diff --git a/forest/bonsai/simulate_log_data.py b/src/forest/bonsai/simulate_log_data.py similarity index 100% rename from forest/bonsai/simulate_log_data.py rename to src/forest/bonsai/simulate_log_data.py diff --git a/forest/constants.py b/src/forest/constants.py similarity index 100% rename from forest/constants.py rename to src/forest/constants.py diff --git a/forest/jasmine/__init__.py b/src/forest/jasmine/__init__.py similarity index 100% rename from forest/jasmine/__init__.py rename to src/forest/jasmine/__init__.py diff --git a/forest/jasmine/data2mobmat.py b/src/forest/jasmine/data2mobmat.py similarity index 100% rename from forest/jasmine/data2mobmat.py rename to src/forest/jasmine/data2mobmat.py diff --git a/forest/jasmine/mobmat2traj.py b/src/forest/jasmine/mobmat2traj.py similarity index 100% rename from forest/jasmine/mobmat2traj.py rename to src/forest/jasmine/mobmat2traj.py diff --git a/forest/jasmine/sogp_gps.py b/src/forest/jasmine/sogp_gps.py similarity index 100% rename from forest/jasmine/sogp_gps.py rename to src/forest/jasmine/sogp_gps.py diff --git a/forest/jasmine/traj2stats.py b/src/forest/jasmine/traj2stats.py similarity index 100% rename from forest/jasmine/traj2stats.py rename to src/forest/jasmine/traj2stats.py diff --git a/forest/oak/__init__.py b/src/forest/oak/__init__.py similarity index 100% rename from forest/oak/__init__.py rename to src/forest/oak/__init__.py diff --git a/forest/oak/base.py b/src/forest/oak/base.py similarity index 100% rename from forest/oak/base.py rename to src/forest/oak/base.py diff --git a/forest/poplar/__init__.py b/src/forest/poplar/__init__.py similarity index 100% rename from forest/poplar/__init__.py rename to src/forest/poplar/__init__.py diff --git a/forest/poplar/classes/__init__.py b/src/forest/poplar/classes/__init__.py similarity index 100% rename from forest/poplar/classes/__init__.py rename to src/forest/poplar/classes/__init__.py diff --git a/forest/poplar/classes/history.py b/src/forest/poplar/classes/history.py similarity index 100% rename from forest/poplar/classes/history.py rename to src/forest/poplar/classes/history.py diff --git a/forest/poplar/classes/registry.py b/src/forest/poplar/classes/registry.py similarity index 100% rename from forest/poplar/classes/registry.py rename to src/forest/poplar/classes/registry.py diff --git a/forest/poplar/classes/template.py b/src/forest/poplar/classes/template.py similarity index 100% rename from forest/poplar/classes/template.py rename to src/forest/poplar/classes/template.py diff --git a/forest/poplar/classes/trackers.py b/src/forest/poplar/classes/trackers.py similarity index 100% rename from forest/poplar/classes/trackers.py rename to src/forest/poplar/classes/trackers.py diff --git a/forest/poplar/constants/__init__.py b/src/forest/poplar/constants/__init__.py similarity index 100% rename from forest/poplar/constants/__init__.py rename to src/forest/poplar/constants/__init__.py diff --git a/forest/poplar/constants/misc.py b/src/forest/poplar/constants/misc.py similarity index 100% rename from forest/poplar/constants/misc.py rename to src/forest/poplar/constants/misc.py diff --git a/forest/poplar/constants/time.py b/src/forest/poplar/constants/time.py similarity index 100% rename from forest/poplar/constants/time.py rename to src/forest/poplar/constants/time.py diff --git a/forest/poplar/functions/__init__.py b/src/forest/poplar/functions/__init__.py similarity index 100% rename from forest/poplar/functions/__init__.py rename to src/forest/poplar/functions/__init__.py diff --git a/forest/poplar/functions/helpers.py b/src/forest/poplar/functions/helpers.py similarity index 100% rename from forest/poplar/functions/helpers.py rename to src/forest/poplar/functions/helpers.py diff --git a/forest/poplar/functions/holidays.py b/src/forest/poplar/functions/holidays.py similarity index 100% rename from forest/poplar/functions/holidays.py rename to src/forest/poplar/functions/holidays.py diff --git a/forest/poplar/functions/io.py b/src/forest/poplar/functions/io.py similarity index 100% rename from forest/poplar/functions/io.py rename to src/forest/poplar/functions/io.py diff --git a/forest/poplar/functions/log.py b/src/forest/poplar/functions/log.py similarity index 100% rename from forest/poplar/functions/log.py rename to src/forest/poplar/functions/log.py diff --git a/forest/poplar/functions/time.py b/src/forest/poplar/functions/time.py similarity index 100% rename from forest/poplar/functions/time.py rename to src/forest/poplar/functions/time.py diff --git a/forest/poplar/functions/timezone.py b/src/forest/poplar/functions/timezone.py similarity index 100% rename from forest/poplar/functions/timezone.py rename to src/forest/poplar/functions/timezone.py diff --git a/forest/poplar/legacy/__init__.py b/src/forest/poplar/legacy/__init__.py similarity index 100% rename from forest/poplar/legacy/__init__.py rename to src/forest/poplar/legacy/__init__.py diff --git a/forest/poplar/legacy/common_funcs.py b/src/forest/poplar/legacy/common_funcs.py similarity index 100% rename from forest/poplar/legacy/common_funcs.py rename to src/forest/poplar/legacy/common_funcs.py diff --git a/forest/poplar/raw/__init__.py b/src/forest/poplar/raw/__init__.py similarity index 100% rename from forest/poplar/raw/__init__.py rename to src/forest/poplar/raw/__init__.py diff --git a/forest/poplar/raw/doc.py b/src/forest/poplar/raw/doc.py similarity index 100% rename from forest/poplar/raw/doc.py rename to src/forest/poplar/raw/doc.py diff --git a/forest/poplar/raw/noncode/data_streams.csv b/src/forest/poplar/raw/noncode/data_streams.csv similarity index 100% rename from forest/poplar/raw/noncode/data_streams.csv rename to src/forest/poplar/raw/noncode/data_streams.csv diff --git a/forest/poplar/raw/noncode/headers.json b/src/forest/poplar/raw/noncode/headers.json similarity index 100% rename from forest/poplar/raw/noncode/headers.json rename to src/forest/poplar/raw/noncode/headers.json diff --git a/forest/poplar/raw/noncode/power_events.csv b/src/forest/poplar/raw/noncode/power_events.csv similarity index 100% rename from forest/poplar/raw/noncode/power_events.csv rename to src/forest/poplar/raw/noncode/power_events.csv diff --git a/forest/poplar/raw/noncode/question_type_names.json b/src/forest/poplar/raw/noncode/question_type_names.json similarity index 100% rename from forest/poplar/raw/noncode/question_type_names.json rename to src/forest/poplar/raw/noncode/question_type_names.json diff --git a/forest/poplar/raw/readers.py b/src/forest/poplar/raw/readers.py similarity index 100% rename from forest/poplar/raw/readers.py rename to src/forest/poplar/raw/readers.py diff --git a/forest/sycamore/__init__.py b/src/forest/sycamore/__init__.py similarity index 100% rename from forest/sycamore/__init__.py rename to src/forest/sycamore/__init__.py diff --git a/forest/sycamore/__main__.py b/src/forest/sycamore/__main__.py similarity index 100% rename from forest/sycamore/__main__.py rename to src/forest/sycamore/__main__.py diff --git a/forest/sycamore/base.py b/src/forest/sycamore/base.py similarity index 100% rename from forest/sycamore/base.py rename to src/forest/sycamore/base.py diff --git a/forest/sycamore/common.py b/src/forest/sycamore/common.py similarity index 100% rename from forest/sycamore/common.py rename to src/forest/sycamore/common.py diff --git a/forest/sycamore/constants.py b/src/forest/sycamore/constants.py similarity index 100% rename from forest/sycamore/constants.py rename to src/forest/sycamore/constants.py diff --git a/forest/sycamore/read_audio.py b/src/forest/sycamore/read_audio.py similarity index 100% rename from forest/sycamore/read_audio.py rename to src/forest/sycamore/read_audio.py diff --git a/forest/sycamore/responses.py b/src/forest/sycamore/responses.py similarity index 100% rename from forest/sycamore/responses.py rename to src/forest/sycamore/responses.py diff --git a/forest/sycamore/submits.py b/src/forest/sycamore/submits.py similarity index 100% rename from forest/sycamore/submits.py rename to src/forest/sycamore/submits.py diff --git a/forest/sycamore/utils.py b/src/forest/sycamore/utils.py similarity index 100% rename from forest/sycamore/utils.py rename to src/forest/sycamore/utils.py diff --git a/forest/utils.py b/src/forest/utils.py similarity index 100% rename from forest/utils.py rename to src/forest/utils.py diff --git a/forest/willow/__init__.py b/src/forest/willow/__init__.py similarity index 100% rename from forest/willow/__init__.py rename to src/forest/willow/__init__.py diff --git a/forest/willow/log_stats.py b/src/forest/willow/log_stats.py similarity index 100% rename from forest/willow/log_stats.py rename to src/forest/willow/log_stats.py