summaryrefslogtreecommitdiff
path: root/Makefile
blob: 18dfbcd1167626b7eb417f5955126f1d7ec97016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: install

import:
	venv/bin/python3 ./rater.py -i

run:
	PYTHONIOENCODING=utf-8 venv/bin/python3 ./rater.py

venv:
	python3 -m venv ./venv

install: venv
	venv/bin/pip install --upgrade pip
	venv/bin/pip install -r requirements.txt