File: postCreate.sh

package info (click to toggle)
pyisy 3.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 488 kB
  • sloc: python: 5,177; makefile: 15
file content (14 lines) | stat: -rwxr-xr-x 320 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

cd /workspaces/PyISY

# Setup the example folder as copy of the example.
mkdir -p example
cp -r pyisy/__main__.py example/example_connection.py

# Install the editable local package
pip3 install -e .
pip3 install -r requirements-dev.txt

# Install pre-commit requirements
pre-commit install --install-hooks