ISEK
ISEK is a python tool which helps to manage tasks by sorting them based on the Eisenhower Matrix. Beyond the concept of the Eisenhower Matrix it is able to fit tasks between appointments and to manage interdependent tasks.
Installation
Currently there is no way to directly install ISEK. It has to be build from source and installed using Poetry
poetry build
pip install ./dist/isek-<version>-py3-none-any.whl
Usage
ISEK can be used in various ways: as a CLI tool, as a Python library, or as an API (with the help of the isek_sdk
package). Detailed descriptions on how to use each package can be found in the official documentation.
Development
Setup
For development install the packages using Poetry and enter the venv
which is created automatically.
poetry install --with dev <dependency groups>
poetry shell
Depending on your usecase you want to add the following optional dependency groups:
dev
: General development dependenciesdoc
: Dependencies for building the docsvis
: Dependencies for visualizing/analyzing algorithms and data
Devcontainer
Alternatively this repository contains devcontainers for VSCode which are recommended when working with the API. It automatically generates a PostgreSQL and PgAdmin container with a development configuration.
When entering the devcontainer the Poetry venv
still needs to be activated
poetry shell
Utilities
The repository contains some custom utilities located in the bin/
folder to improve the development experience.
docs.py
: Build the documentation including coverage report, API schema and CLI documentationformat.py
: Check and/or Format code usingflake8
,black
andisort
test.py
: Run tests for some or all packages
Each utility comes with its own optional arguments to change its behaviour. You can check them with <utility>.py --help
.
Contribution
We’d love to have your contributions added to ISEK! If you would like to contribute, please follow these guidelines:
- Keep your pull requests as small as possible. Large pull requests are harder to review, merge, and test.
- Format/Check your changes using our formatting script
bin/format.py
. - Add a test for any new functionality and make sure tests still pass after your changes. Use our testing script
bin/test.py
for running tests. - Update documentation if necessary.
License
This project is licensed under the AGPLv3 license. See the LICENSE file for more information.
Last page update: Friday, January 17th 2025, 04:28:01 UTC