Codebase list python-flask-session / 65e1ffbb-9b37-472d-a4fb-97005abdf078/main Makefile
65e1ffbb-9b37-472d-a4fb-97005abdf078/main

Tree @65e1ffbb-9b37-472d-a4fb-97005abdf078/main (Download .tar.gz)

Makefile @65e1ffbb-9b37-472d-a4fb-97005abdf078/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