/solution-radek

testing solution for Radek

Primary LanguagePython

radek

What this package does

Developing

Setting up your environment with Poetry

Install Poetry

Installing dependencies

Creating lock file

poetry lock

Installing from lock file

poetry install

Running tests

pytest

Configuration

To add default configuration options to this package, add them to solution-radek/solution_radek/init.py like so:

def default_config():
    return {
        'my-option': 'its default value'
    }

These options can later be retrieved like this:

import lime_config

def my_function():
    opt = lime_config.config.plugins['solution-radek']['my-option']