File: setup

package info (click to toggle)
pyfibaro 0.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 460 kB
  • sloc: python: 1,931; sh: 9; makefile: 3
file content (15 lines) | stat: -rwxr-xr-x 319 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash
# Setup the dependencies.

# Stop on errors
set -e

# Runtime dependencies
python -m pip install -r requirements.txt

# Test dependencies
python -m pip install -r requirements-test.txt

# Tools for distribution to pypi.org
python -m pip install --upgrade build
python -m pip install --upgrade twine