Skip to content

FELT-Labs/feltlabs.py

Repository files navigation

feltlabs.py

Docker Pulls PyPI Version
Python library for FELT Labs. It is available at PyPI:

pip install feltlabs

Development

Install

pip install -e .
pip install -r requirements-dev.txt
pre-commit install

Test

pytest --cov=feltlabs --cov-report=term

Versioning

Do following steps when updating to new version:

  1. Update version number in setup.py
  2. Run following commands (replace 0.0.0 with correct version number):
    git add -A
    git commit -m "New version 0.0.0"
    git tag v0.0.0
    git push origin v0.0.0
    
  3. Create new release on Github based on tag