Skip to content

Commit

Permalink
Merge pull request #69 from swisstopo/LGVISIUM-51-zsh-compability
Browse files Browse the repository at this point in the history
Close #LGVISIUM-51: Pip install Install compatibilty with zsh
  • Loading branch information
dcleres authored Jul 30, 2024
2 parents d21d8a5 + 781135e commit efc655d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ The below commands will install the package for you (assuming you have successfu
```bash
python -m venv env
source env/bin/activate
pip install -e .[all]
pip install -e '.[all]'
```

Alternatively you can replace the `pip install -e .[all]` command with `pip install git+https://github.com/swisstopo/swissgeol-boreholes-dataextraction.git` in production scenarios.
Alternatively you can replace the `pip install -e '.[all]'` command with `pip install git+https://github.com/swisstopo/swissgeol-boreholes-dataextraction.git` in production scenarios.

## Run data extraction
To execute the data extraction pipeline, follow these steps:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ dependencies = [
"levenshtein",
"pathlib",
"python-dotenv",
"setuptools",
"scikit-learn>=1.4.0",
"click>=8.0.0",
"PyYAML>=6.0.1",
Expand Down

1 comment on commit efc655d

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src/stratigraphy
   __init__.py8188%11
   extract.py1881880%3–482
   get_files.py19190%3–47
   line_detection.py26260%3–76
   main.py95950%3–237
src/stratigraphy/util
   boundarydepthcolumnvalidator.py412051%47, 57, 60, 81–84, 109–127, 139–148
   coordinate_extraction.py127794%31, 62, 75–76, 80, 205, 328
   dataclasses.py32391%37–39
   depthcolumn.py1946467%26, 30, 51, 57, 60–61, 85, 88, 95, 102, 110–111, 121, 138–154, 192, 229, 248–256, 267, 272, 279, 310, 315–322, 337–338, 381–423
   depthcolumnentry.py26773%12, 15, 29–30, 33, 45, 52
   description_block_splitter.py70297%24, 139
   draw.py80800%3–244
   duplicate_detection.py51510%3–146
   extract_text.py27293%38–39
   find_depth_columns.py91693%42–43, 71, 83, 176–177
   find_description.py632856%27–35, 50–63, 79–95, 172–175
   geometric_line_utilities.py86298%82, 132
   interval.py1065548%24–27, 31–34, 39, 44, 47, 57–59, 99–145, 166, 171–187
   language_detection.py18180%3–45
   layer_identifier_column.py91910%3–227
   line.py49492%25, 42, 51, 98
   linesquadtree.py46198%76
   plot_utils.py43430%3–120
   predictions.py1301300%3–272
   textblock.py74889%27, 51, 63, 75, 98, 119, 127, 155
   util.py401855%22, 40–47, 61–63, 87–88, 100–105
TOTAL182196947% 

Tests Skipped Failures Errors Time
61 0 💤 0 ❌ 0 🔥 1.006s ⏱️

Please sign in to comment.