Metadata-Version: 2.0
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+
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: depthai (==2.15.0.0)
Requires-Dist: numpy (==1.22.0)
Requires-Dist: opencv-contrib-python (==4.5.5.64)
Requires-Dist: requests (==2.26.0)

#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
```

