File: Makefile

package info (click to toggle)
python-readtime 3.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 172 kB
  • sloc: python: 246; makefile: 20; sh: 5
file content (19 lines) | stat: -rw-r--r-- 300 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.PHONY: all test clean build upload

all:
	@echo 'test     run the unit tests with the current default python'
	@echo 'release  publish the current version to pypi'

test:
	@pytest

release: clean build upload

clean:
	@rm -f dist/*

build:
	@python ./setup.py sdist

upload:
	@twine upload ./dist/*