MaastrichtU-IDS / fair-workflow

πŸ’ A library to describe workflow written in python using semantic technologies.

Home Page:https://maastrichtu-ids.github.io/fair-workflow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FAIR workflow

PyPI - Version PyPI - Python Version license code style - black

Test package Publish package

A package to describe workflow using semantic technologies.

πŸ“¦οΈ Installation

This package requires Python >=3.7, simply install it with:

pip install fair-workflow

πŸͺ„ Usage

⌨️ Use as a command-line interface

You can easily use your package from your terminal after installing fair-workflow with pip:

fair-workflow

Get a full rundown of the available options with:

fair-workflow --help

🐍 Use with python

Use this package in python scripts:

import fair_workflow

# TODO: add example to use your package

πŸ§‘β€πŸ’» Development setup

The final section of the README is for if you want to run the package in development, and get involved by making a code contribution.

πŸ“₯️ Clone

Clone the repository:

git clone https://github.com/MaastrichtU-IDS/fair-workflow
cd fair-workflow

🐣 Install dependencies

Install Hatch, this will automatically handle virtual environments and make sure all dependencies are installed when you run a script in the project:

pip install --upgrade hatch

Install the dependencies in a local virtual environment:

hatch -v env create

β˜‘οΈ Run tests

Make sure the existing tests still work by running pytest. Note that any pull requests to the fairworkflows repository on github will automatically trigger running of the test suite;

hatch run test

To display all print():

hatch run test -s

🧹 Code formatting

The code will be automatically formatted when you commit your changes using pre-commit. But you can also run the script to format the code yourself:

hatch run fmt

Check the code for errors, and if it is in accordance with the PEP8 style guide, by running flake8 and mypy:

hatch run check

πŸ“– Generate documentation

The documentation is automatically generated from the markdown files in the docs folder and python docstring comments, and published by a GitHub Actions workflow.

Start the docs on http://localhost:8001{:target="_blank"}

hatch run docs

♻️ Reset the environment

In case you are facing issues with dependencies not updating properly you can easily reset the virtual environment with:

hatch env prune

🏷️ New release process

The deployment of new releases is done automatically by a GitHub Action workflow when a new release is created on GitHub. To release a new version:

  1. Make sure the PYPI_TOKEN secret has been defined in the GitHub repository (in Settings > Secrets > Actions). You can get an API token from PyPI at pypi.org/manage/account.
  2. Increment the version number in the pyproject.toml file in the root folder of the repository.
  3. Create a new release on GitHub, which will automatically trigger the publish workflow, and publish the new release to PyPI.

You can also manually trigger the workflow from the Actions tab in your GitHub repository webpage.

About

πŸ’ A library to describe workflow written in python using semantic technologies.

https://maastrichtu-ids.github.io/fair-workflow

License:MIT License


Languages

Language:Python 100.0%