Skip to content

Commit ed9f197

Browse files
committed
temporary status - runs dopplerview scripts ~correctly. Whole architecture needs clarifying since somewhat unreadable
1 parent 3d0c973 commit ed9f197

40 files changed

Lines changed: 2475 additions & 1698 deletions

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Temporary workspace files
2+
system_design/
3+
AGENTS.md
4+
uv.lock
5+
test/
6+
17
# Byte-compiled / cache
28
__pycache__/
39
*.py[cod]
@@ -21,6 +27,7 @@ dist/
2127
wheelhouse/
2228

2329
# Test / coverage
30+
.tmp/
2431
.pytest_cache/
2532
.tox/
2633
.nox/
@@ -63,4 +70,4 @@ Desktop.ini
6370
process_result.csv
6471
pipelines.txt
6572
requirements-optional.txt
66-
eyeflow_matlab/
73+
eyeflow_matlab/

pyproject.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,23 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "EyeFlow"
7-
version = "0.1.0"
7+
version = "0.2.0"
88
description = "Cohort-analysis engine for retinal Doppler holography"
99
readme = "README.md"
1010
requires-python = ">=3.10"
1111
license = { text = "GPL-3.0-only" }
1212

1313
# =============== [ DEPENDENCIES ] ===============
1414

15-
dependencies = ["numpy>=1.24", "h5py>=3.9", "sv-ttk>=2.6", "tkinterdnd2"]
15+
dependencies = [
16+
"numpy>=1.24",
17+
"h5py>=3.9",
18+
"scipy>=1.10",
19+
"scikit-image>=0.20",
20+
"joblib>=1.3",
21+
"sv-ttk>=2.6",
22+
"tkinterdnd2",
23+
]
1624

1725
[project.optional-dependencies]
1826
# For specific pipelines

src/app_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
APP_NAME = "EyeFlow"
1313
SETTINGS_FILENAME = "settings.json"
1414
DEFAULT_SETTINGS_FILENAME = "default_settings.json"
15-
LAST_BATCH_LOG_FILENAME = "last_batch_log.txt"
15+
LAST_BATCH_LOG_FILENAME = "last_EF_log.txt"
1616
VERSION_PATTERN = re.compile(r'^version\s*=\s*"([^"]+)"\s*$')
1717
INVALID_PATH_CHARS_PATTERN = re.compile(r'[<>:"/\\|?*]+')
1818

src/calculations/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/calculations/_shared.py

Lines changed: 0 additions & 75 deletions
This file was deleted.

src/calculations/bloodflow_velocity/__init__.py

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/calculations/bloodflow_velocity/per_beat_analysis.py

Lines changed: 0 additions & 126 deletions
This file was deleted.

src/calculations/cross_section/__init__.py

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)