File: Makefile

package info (click to toggle)
django-recurrence 1.12.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,148 kB
  • sloc: python: 2,530; javascript: 2,502; makefile: 159; sh: 6
file content (23 lines) | stat: -rw-r--r-- 251 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
22
23
coverage:
	pytest

test:
	pytest

testall:
	tox

build: clean
	python setup.py sdist bdist_wheel

clean:
	rm -rf dist/*
	rm -rf build/*

push: build
	git push

release: push
	twine upload -r pypi dist/*

.PHONY: coverage test testall build clean push