Metadata-Version: 2.1
Name: pyrbo
Version: 10
Summary: Python JIT compiler for near-native performance of low-level arithmetic
Home-page: https://github.com/combatopera/pyrbo
Author: Andrzej Cichocki
License: UNKNOWN
Description: # pyrbo
        Python JIT compiler for near-native performance of low-level arithmetic
        
        ## Install
        These are generic installation instructions.
        
        ### To use, permanently
        The quickest way to get started is to install the current release from PyPI:
        ```
        pip3 install --user pyrbo
        ```
        
        ### To use, temporarily
        If you prefer to keep .local clean, install to a virtualenv:
        ```
        python3 -m venv venvname
        venvname/bin/pip install pyrbo
        . venvname/bin/activate
        ```
        
        ### To develop
        First clone the repo using HTTP or SSH:
        ```
        git clone https://github.com/combatopera/pyrbo.git
        git clone git@github.com:combatopera/pyrbo.git
        ```
        Now use pyven's pipify to create a setup.py, which pip can then use to install the project editably:
        ```
        python3 -m venv pyvenvenv
        pyvenvenv/bin/pip install pyven
        pyvenvenv/bin/pipify pyrbo
        
        python3 -m venv venvname
        venvname/bin/pip install -e pyrbo
        . venvname/bin/activate
        ```
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
