File: Makefile

package info (click to toggle)
python-webvtt 0.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 640 kB
  • sloc: python: 3,777; makefile: 29; sh: 6
file content (13 lines) | stat: -rw-r--r-- 213 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
build:
	rm -rf dist
	mkdir dist
	python setup.py sdist bdist_wheel
	twine check dist/*

release_test: build
	twine upload -r testpypi dist/*

release: build
	twine upload dist/*

.PHONY: build release_test release