Metadata-Version: 2.1
Name: robofloak
Version: 0.0.1
Summary: python client for deploying Roboflow models to OAK devices
Home-page: https://www.roboflow.com
Author: Roboflow
Author-email: jacob@roboflow.com
License: GPLv3+
Description: #Setup Instructions
        ##DepthAI
        ###Linux
        Install DepthAI Dependencies 
        ```
        sudo wget -qO- https://docs.luxonis.com/install_dependencies.sh | bash
        ```  
        Set USB Permissions  
        ```
        echo 'SUBSYSTEM=="usb", ATTRS{idVendor}=="03e7", MODE="0666"' | sudo tee /etc/udev/rules.d/80-movidius.rules
        sudo udevadm control --reload-rules && sudo udevadm trigger
        ```
        
        ###Windows
        Install Chocolatey  
        ```
        Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
        ```  
        Install DepthAI Dependencies
        ```
        choco install cmake git python pycharm-community -y
        ```
        
        ###MacOS
        Install DepthAI Dependencies
        ```
        bash -c "$(curl -fL https://docs.luxonis.com/install_dependencies.sh)"
        ```
        
        See M1 specific instructions in `M1Install.md`
        
        ##Install Python Dependencies
        ```
        pip3 install -r requirements.txt
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
