Codebase list python-flask-session / d2e45173-195c-403c-aca6-66b741c02a22/main Makefile
d2e45173-195c-403c-aca6-66b741c02a22/main

Tree @d2e45173-195c-403c-aca6-66b741c02a22/main (Download .tar.gz)

Makefile @d2e45173-195c-403c-aca6-66b741c02a22/mainraw · history · blame

all: clean-pyc test

test:
	python test_session.py

clean-pyc:
	find . -name '*.pyc' -exec rm -f {} +
	find . -name '*.pyo' -exec rm -f {} +
	find . -name '*~' -exec rm -f {} +

release:
	python setup.py register
	python setup.py sdist upload
	python setup.py bdist_wheel upload