Merge commit '1bc366706b2296c4d81bbe44a723dbd9bb585618'

master
Gerber, Mike 4 years ago
commit 3cf596d5fe

@ -0,0 +1,23 @@
version: 2.1
jobs:
test:
parameters:
python-version:
type: string
docker:
- image: circleci/python:<< parameters.python-version >>
steps:
- checkout
- run: pip3 install --upgrade pip
- run: pip3 install -r requirements.txt
- run: pip3 install pytest
- run: pytest
workflows:
all-tests:
jobs:
- test:
matrix:
parameters:
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"]

@ -1,6 +1,6 @@
Extract the MODS metadata of a bunch of METS files into a pandas DataFrame. Extract the MODS metadata of a bunch of METS files into a pandas DataFrame.
[![Build Status](https://travis-ci.org/qurator-spk/modstool.svg?branch=master)](https://travis-ci.org/qurator-spk/modstool) [![Build Status](https://circleci.com/gh/qurator-spk/modstool.svg?style=svg)](https://circleci.com/gh/qurator-spk/modstool)
Column names are derived from the corresponding MODS elements. Some domain Column names are derived from the corresponding MODS elements. Some domain
knowledge is used to convert elements to a useful column, e.g. produce sets knowledge is used to convert elements to a useful column, e.g. produce sets

Loading…
Cancel
Save