File: Makefile

package info (click to toggle)
python-wrapt 1.17.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,128 kB
  • sloc: python: 6,250; ansic: 2,501; makefile: 182; sh: 46
file content (21 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.PHONY : all

all :

install : all
	pip install -U .

package :
	python setup.py sdist

release : clean package
	twine upload dist/*

mostlyclean:
	rm -rf .coverage.*

clean: mostlyclean
	rm -rf build dist src/wrapt.egg-info .tox

test :
	tox --skip-missing-interpreters