To contribute to this library, first checkout the code. Then create a new virtual environment:
cd toggl-to-sqlite
python -m venv venv
source venv/bin/activate
Now install the dependencies and tests:
pip install -e '.[test]'
To run the tests:
pytest
This library uses Black for code formatting. The correct version of Black will be installed by pip install -e '.[test]'
- you can run black .
in the root directory to apply those formatting rules.