Metadata-Version: 2.4
Name: oeg_sw_class
Version: 0.1.0
Summary: RDF and RDFS validation for the OEG Semantic Web class assignments
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: rdflib>=7

# oeg_sw_class

Validation helpers for the OEG Semantic Web class assignments (Tasks 06 and 07).

Install the published package with:

```bash
python -m pip install oeg_sw_class
```

Use it in Python or a notebook:

```python
from oeg_sw_class import Report

r = Report()
r.validate_task_06_02(g)
```

For local installation before publication, run `python -m pip install .` in
the directory containing this `pyproject.toml`.

To publish a release, install `build` and `twine`, then run:

```bash
python -m build
python -m twine check dist/*
python -m twine upload dist/*
```

For later releases, increase `version` in `pyproject.toml` before rebuilding.
