Codebase list python-flask-session / 247bd3d4-6992-4aac-93f2-2e348009c127/main Makefile
247bd3d4-6992-4aac-93f2-2e348009c127/main

Tree @247bd3d4-6992-4aac-93f2-2e348009c127/main (Download .tar.gz)

Makefile @247bd3d4-6992-4aac-93f2-2e348009c127/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