You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,15 +16,15 @@ This repository can be installed from PyPI or from source.
16
16
### Installing from PyPI
17
17
18
18
```bash
19
-
pip install case_utils
19
+
pip install case-utils
20
20
```
21
21
22
22
Users who wish to install from PyPI should be aware that while CASE's ontology is in its pre-1.0.0 release state, backwards-incompatible ontology changes may occur. This may manifest as [`case_validate`](#case_validate) reporting data review errors after installing an updated `case_utils` version. Users may wish to pin `case_utils` within any dependent code bases to be less than the next unreleased SEMVER-minor version. (E.g. if `case_utils` version `0.8.0` is currently available, a newly adopting project might wish to track `case_utils<0.9.0` among its dependencies.)
23
23
24
24
25
25
### Installing from source
26
26
27
-
Users who wish to install pre-release versions and/or make improvements to the code base should install in this manner.
27
+
Users who wish to install pre-release versions and/or make improvements to the code base should install in this manner.
28
28
29
29
1. Clone this repository.
30
30
2. (Optional) Create and activate a virtual environment.
Copy file name to clipboardExpand all lines: case_utils/case_file/__init__.py
+10-6Lines changed: 10 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@
15
15
This module creates a graph object that provides a basic UCO characterization of a single file. The gathered metadata is among the more "durable" file characteristics, i.e. characteristics that would remain consistent when transferring a file between locations.
Copy file name to clipboardExpand all lines: case_utils/namespace.py
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,12 +17,14 @@
17
17
To use, add "from case_utils.namespace import *". Namespace variables starting with "NS_" are imported. As needs are demonstrated in CASE tooling (both in case_utils and from downstream requests), namespaces will also be imported from rdflib for a consistent "NS_*" spelling.
0 commit comments