Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 701 Bytes

DEVELOPMENT.md

File metadata and controls

43 lines (30 loc) · 701 Bytes

Development - Unix

Setup

  1. Clone the project

  2. Create the virtual environment.

    python -m .venv
    . .venv/bin/activate
  3. Update pip and install build and twine in the virtual environment. Install the requirements for testing.

    pip install --upgrade pip
    pip install build twine
    pip install -r requirements-dev.txt
    pip install -r requirements-docs.txt
  4. Install the project locally.

    pip install --editable .

Publishing

  1. Clean the build folder and build the package.

    rm dist/*
    python -m build
  2. Publish the package.

    twine upload dist/*