Codebase list passwordmeter / 810b6d4b-a110-460e-b6fb-1b6ffb8fb61f/main Makefile.python
810b6d4b-a110-460e-b6fb-1b6ffb8fb61f/main

Tree @810b6d4b-a110-460e-b6fb-1b6ffb8fb61f/main (Download .tar.gz)

Makefile.python @810b6d4b-a110-460e-b6fb-1b6ffb8fb61f/mainraw · history · blame

# -*- coding: utf-8 -*-

test:
	nosetests --verbose

cheesecake:
	cheesecake_index --name="$(PKGNAME)"

clean:
	find . -iname '*.pyc' -exec rm {} \;
	rm -fr "$(PKGNAME).egg-info" dist

tag:
	@echo "[  ] tagging as version `cat VERSION.txt`..."
	git tag -a "v`cat VERSION.txt`" -m "released v`cat VERSION.txt`"

ci:
	git push
	git push --tags

upload:
	python setup.py sdist upload