Codebase list passwordmeter / 4012020f-8c40-46d2-b991-cc4eaa62492d/main Makefile.python
4012020f-8c40-46d2-b991-cc4eaa62492d/main

Tree @4012020f-8c40-46d2-b991-cc4eaa62492d/main (Download .tar.gz)

Makefile.python @4012020f-8c40-46d2-b991-cc4eaa62492d/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