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.
Files changed (26) hide show
  1. {svc_processing-0.1.3 → svc_processing-0.1.4}/PKG-INFO +18 -4
  2. {svc_processing-0.1.3 → svc_processing-0.1.4}/README.md +17 -3
  3. {svc_processing-0.1.3 → svc_processing-0.1.4}/pyproject.toml +1 -1
  4. {svc_processing-0.1.3 → svc_processing-0.1.4}/svc_processing.egg-info/PKG-INFO +18 -4
  5. {svc_processing-0.1.3 → svc_processing-0.1.4}/LICENSE +0 -0
  6. {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/__init__.py +0 -0
  7. {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/cli.py +0 -0
  8. {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/processor.py +0 -0
  9. {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/resampler.py +0 -0
  10. {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/run_config.py +0 -0
  11. {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/runner.py +0 -0
  12. {svc_processing-0.1.3 → svc_processing-0.1.4}/pipeline/sig_processor.py +0 -0
  13. {svc_processing-0.1.3 → svc_processing-0.1.4}/setup.cfg +0 -0
  14. {svc_processing-0.1.3 → svc_processing-0.1.4}/svc_processing.egg-info/SOURCES.txt +0 -0
  15. {svc_processing-0.1.3 → svc_processing-0.1.4}/svc_processing.egg-info/dependency_links.txt +0 -0
  16. {svc_processing-0.1.3 → svc_processing-0.1.4}/svc_processing.egg-info/entry_points.txt +0 -0
  17. {svc_processing-0.1.3 → svc_processing-0.1.4}/svc_processing.egg-info/requires.txt +0 -0
  18. {svc_processing-0.1.3 → svc_processing-0.1.4}/svc_processing.egg-info/top_level.txt +0 -0
  19. {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_cli.py +0 -0
  20. {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_pipeline_demo.py +0 -0
  21. {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_processor.py +0 -0
  22. {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_resampler_parity.py +0 -0
  23. {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_resampler_public_api.py +0 -0
  24. {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_run_config.py +0 -0
  25. {svc_processing-0.1.3 → svc_processing-0.1.4}/tests/test_runner.py +0 -0
  26. {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
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
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "svc-processing"
7
- version = "0.1.3"
7
+ version = "0.1.4"
8
8
  description = "Pure-Python SVC HR-1024i hyperspectral .sig processing pipeline"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: svc-processing
3
- Version: 0.1.3
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