File: Makefile

package info (click to toggle)
q2-sample-classifier 2024.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,732 kB
  • sloc: python: 5,060; makefile: 41; sh: 13
file content (26 lines) | stat: -rw-r--r-- 413 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.PHONY: all lint test test-cov install dev clean distclean

PYTHON ?= python3
DESTDIR ?= $(CURDIR)/debian/q2-sample-classifier/

all: ;

lint:
	q2lint
	flake8

test: all
	py.test-3

test-cov: all
	py.test-3 --cov=q2_sample_classifier

install:
	$(PYTHON) setup.py install --root $(DESTDIR) --prefix=/usr --install-platlib=/usr/lib/python3/dist-packages

dev: all
	pip install -e .

clean: distclean

distclean: ;