svc-processing 0.1.3__tar.gz → 0.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {svc_processing-0.1.3 → svc_processing-0.1.4}/PKG-INFO +18 -4
- {svc_processing-0.1.3 → svc_processing-0.1.4}/README.md +17 -3
- {svc_processing-0.1.3 → svc_processing-0.1.4}/pyproject.toml +1 -1
- {svc_processing-0.1.3 → svc_processing-0.1.4}/svc_processing.egg-info/PKG-INFO +18 -4
- {svc_processing-0.1.3 → svc_processing-0.1.4}/LICENSE +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/__init__.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/cli.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/processor.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/resampler.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/run_config.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/runner.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/sig_processor.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/setup.cfg +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/svc_processing.egg-info/SOURCES.txt +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/svc_processing.egg-info/dependency_links.txt +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/svc_processing.egg-info/entry_points.txt +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/svc_processing.egg-info/requires.txt +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/svc_processing.egg-info/top_level.txt +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_cli.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_pipeline_demo.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_processor.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_resampler_parity.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_resampler_public_api.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_run_config.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_runner.py +0 -0
- {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_sig_processor.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: svc-processing
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Pure-Python SVC HR-1024i hyperspectral .sig processing pipeline
|
|
5
5
|
Author: Gold Lab (GrapeSPEC project), Cornell University
|
|
6
6
|
Author-email: Cole Regnier <nr466@cornell.edu>
|
|
@@ -77,14 +77,28 @@ svc-pipeline --init-config # command name — different from the package name
|
|
|
77
77
|
svc-pipeline
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
**Working from a clone of this repo** (config/config.json already exists)
|
|
80
|
+
**Working from a clone of this repo** (config/config.json already exists) — run the
|
|
81
|
+
setup script once, then activate the environment it created:
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
./setup.sh # creates .venv, installs everything, stages the demo data
|
|
85
|
+
# ./setup.sh --dev # add the test & lint tools for development
|
|
86
|
+
|
|
87
|
+
source .venv/bin/activate # macOS / Linux
|
|
88
|
+
# .venv\Scripts\activate # Windows PowerShell
|
|
89
|
+
|
|
90
|
+
# Edit config/config.json — replace "<PATH_TO_SIG_INPUT_ROOT>" with your data path.
|
|
91
|
+
svc-pipeline config.json
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
The script always installs into *this* repo's `.venv` no matter which folder you run
|
|
95
|
+
it from, so it avoids the "Directory '.' is not installable" and "No module named …"
|
|
96
|
+
errors that come from being in the wrong directory. Prefer to do it by hand?
|
|
81
97
|
|
|
82
98
|
```bash
|
|
83
99
|
python3.11 -m venv .venv
|
|
84
100
|
source .venv/bin/activate
|
|
85
101
|
python -m pip install -e ".[dev,demo]"
|
|
86
|
-
|
|
87
|
-
# Edit config/config.json — replace "<PATH_TO_SIG_INPUT_ROOT>" with your data path.
|
|
88
102
|
svc-pipeline config.json
|
|
89
103
|
```
|
|
90
104
|
|
|
@@ -44,14 +44,28 @@ svc-pipeline --init-config # command name — different from the package name
|
|
|
44
44
|
svc-pipeline
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
-
**Working from a clone of this repo** (config/config.json already exists)
|
|
47
|
+
**Working from a clone of this repo** (config/config.json already exists) — run the
|
|
48
|
+
setup script once, then activate the environment it created:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
./setup.sh # creates .venv, installs everything, stages the demo data
|
|
52
|
+
# ./setup.sh --dev # add the test & lint tools for development
|
|
53
|
+
|
|
54
|
+
source .venv/bin/activate # macOS / Linux
|
|
55
|
+
# .venv\Scripts\activate # Windows PowerShell
|
|
56
|
+
|
|
57
|
+
# Edit config/config.json — replace "<PATH_TO_SIG_INPUT_ROOT>" with your data path.
|
|
58
|
+
svc-pipeline config.json
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
The script always installs into *this* repo's `.venv` no matter which folder you run
|
|
62
|
+
it from, so it avoids the "Directory '.' is not installable" and "No module named …"
|
|
63
|
+
errors that come from being in the wrong directory. Prefer to do it by hand?
|
|
48
64
|
|
|
49
65
|
```bash
|
|
50
66
|
python3.11 -m venv .venv
|
|
51
67
|
source .venv/bin/activate
|
|
52
68
|
python -m pip install -e ".[dev,demo]"
|
|
53
|
-
|
|
54
|
-
# Edit config/config.json — replace "<PATH_TO_SIG_INPUT_ROOT>" with your data path.
|
|
55
69
|
svc-pipeline config.json
|
|
56
70
|
```
|
|
57
71
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: svc-processing
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Pure-Python SVC HR-1024i hyperspectral .sig processing pipeline
|
|
5
5
|
Author: Gold Lab (GrapeSPEC project), Cornell University
|
|
6
6
|
Author-email: Cole Regnier <nr466@cornell.edu>
|
|
@@ -77,14 +77,28 @@ svc-pipeline --init-config # command name — different from the package name
|
|
|
77
77
|
svc-pipeline
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
**Working from a clone of this repo** (config/config.json already exists)
|
|
80
|
+
**Working from a clone of this repo** (config/config.json already exists) — run the
|
|
81
|
+
setup script once, then activate the environment it created:
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
./setup.sh # creates .venv, installs everything, stages the demo data
|
|
85
|
+
# ./setup.sh --dev # add the test & lint tools for development
|
|
86
|
+
|
|
87
|
+
source .venv/bin/activate # macOS / Linux
|
|
88
|
+
# .venv\Scripts\activate # Windows PowerShell
|
|
89
|
+
|
|
90
|
+
# Edit config/config.json — replace "<PATH_TO_SIG_INPUT_ROOT>" with your data path.
|
|
91
|
+
svc-pipeline config.json
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
The script always installs into *this* repo's `.venv` no matter which folder you run
|
|
95
|
+
it from, so it avoids the "Directory '.' is not installable" and "No module named …"
|
|
96
|
+
errors that come from being in the wrong directory. Prefer to do it by hand?
|
|
81
97
|
|
|
82
98
|
```bash
|
|
83
99
|
python3.11 -m venv .venv
|
|
84
100
|
source .venv/bin/activate
|
|
85
101
|
python -m pip install -e ".[dev,demo]"
|
|
86
|
-
|
|
87
|
-
# Edit config/config.json — replace "<PATH_TO_SIG_INPUT_ROOT>" with your data path.
|
|
88
102
|
svc-pipeline config.json
|
|
89
103
|
```
|
|
90
104
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|