File: Makefile

package info (click to toggle)
pytest-tornado 0.8.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 168 kB
  • sloc: python: 502; makefile: 19; sh: 1
file content (15 lines) | stat: -rw-r--r-- 237 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: build clean upload test-upload

default: build

build:
	python setup.py sdist bdist_wheel

clean:
	rm -rf build dist *.egg-info

upload: clean build
	twine upload dist/*

test-upload: clean build
	twine upload -r pypitest dist/*