File: Makefile

package info (click to toggle)
py-madvr2 1.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 284 kB
  • sloc: python: 2,237; makefile: 15
file content (16 lines) | stat: -rw-r--r-- 266 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: test dev_install build upload

dev_install:
	python3 -m venv .venv
	. .venv/bin/activate && \
	pip3 install -r requirements-test.txt

test:
	. .venv/bin/activate && pytest -s tests

upload: build
	twine upload dist/*

build:
	rm -rf dist/*
	python3 -m build