File: setup

package info (click to toggle)
python-bellows 0.40.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 992 kB
  • sloc: python: 13,630; sh: 7; makefile: 4
file content (15 lines) | stat: -rwxr-xr-x 227 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 repository.

# Stop on errors
set -e

cd "$(dirname "$0")/.."

python3 -m venv venv
source venv/bin/activate

pip install -r requirements_test.txt
pre-commit install

python3 -m pip install -e .