Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ on:
- main
pull_request:
jobs:
codemeta-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check codemeta.json version matches pyproject.toml
run: |
python3 -c "
import json, tomllib
cm = json.load(open('codemeta.json'))['version']
py = tomllib.load(open('pyproject.toml','rb'))['project']['version']
assert cm == py, f'codemeta.json version {cm} != pyproject {py}'
"
build:
runs-on: ${{ matrix.python-version == '3.8' && 'ubuntu-22.04' || 'ubuntu-latest' }}
strategy:
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ keywords:
- EVI
- Ontology
- Provenance
license: MIT
license: Apache-2.0
83 changes: 83 additions & 0 deletions codemeta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
{
"@context": "https://w3id.org/codemeta/3.0",
"@type": "SoftwareSourceCode",
"name": "fairscape-cli",
"description": "A utility for packaging objects and validating metadata for FAIRSCAPE. Provides RO-Crate creation and management, schema handling and validation, data import, build artifacts (HTML datasheets, evidence graphs), release management, and publishing to Fairscape, Dataverse, and DataCite.",
"version": "1.2.8",
"license": "https://spdx.org/licenses/Apache-2.0",
"codeRepository": "https://github.com/fairscape/fairscape-cli",
"issueTracker": "https://github.com/fairscape/fairscape-cli/issues",
"url": "https://fairscape.github.io/fairscape-cli/",
"downloadUrl": "https://pypi.org/project/fairscape-cli/",
"programmingLanguage": "Python",
"runtimePlatform": "Python >= 3.8",
"developmentStatus": "active",
"keywords": [
"fairscape",
"reproducibility",
"FAIR",
"B2AI",
"CLI",
"RO-Crate"
],
"author": [
{
"@type": "Person",
"@id": "https://orcid.org/0000-0003-0384-8499",
"givenName": "Maxwell Adam",
"familyName": "Levinson",
"email": "[email protected]",
"affiliation": {
"@type": "Organization",
"name": "University of Virginia"
}
},
{
"@type": "Person",
"@id": "https://orcid.org/0000-0002-1103-3882",
"givenName": "Justin",
"familyName": "Niestroy",
"email": "[email protected]",
"affiliation": {
"@type": "Organization",
"name": "University of Virginia"
}
},
{
"@type": "Person",
"@id": "https://orcid.org/0000-0003-4647-3877",
"givenName": "Sadnan",
"familyName": "Al Manir",
"email": "[email protected]",
"affiliation": {
"@type": "Organization",
"name": "University of Virginia"
}
},
{
"@type": "Person",
"@id": "https://orcid.org/0000-0003-4060-7360",
"givenName": "Timothy",
"familyName": "Clark",
"email": "[email protected]",
"affiliation": {
"@type": "Organization",
"name": "University of Virginia"
}
}
],
"softwareRequirements": [
{"@type": "SoftwareApplication", "name": "click", "version": ">=8.1.7"},
{"@type": "SoftwareApplication", "name": "pydantic", "version": ">=2.5.1"},
{"@type": "SoftwareApplication", "name": "fairscape-models", "version": ">=1.2.0"},
{"@type": "SoftwareApplication", "name": "jsonschema", "version": ">=4.20.0"},
{"@type": "SoftwareApplication", "name": "frictionless", "version": ">=5.0,<6.0"},
{"@type": "SoftwareApplication", "name": "rdflib"},
{"@type": "SoftwareApplication", "name": "pandas"}
],
"funder": {
"@type": "Organization",
"name": "National Institutes of Health"
},
"funding": "NIH Bridge2AI: OT2OD032742 (Bridge2AI: Cell Maps for AI (CM4AI) Data Generation Project) and OT2OD032701 (Bridge2AI: Patient-Focused Collaborative Hospital Repository Uniting Standards (CHoRUS) for Equitable AI); Frederick Thomas Fund of the University of Virginia"
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies = [
"prettytable>=3.9.0",
"jsonschema>=4.20.0",
"sqids>=0.4.1",
"fairscape-models>=1.1.1",
"fairscape-models[schema-infer]>=1.2.0",
"pyyaml",
"h5py",
"frictionless>=5.0,<6.0",
Expand Down
Loading
Loading