Codebase list python-flask-session / f7f1d4ab-f47d-491a-9551-e10119b37a7d/upstream Makefile
f7f1d4ab-f47d-491a-9551-e10119b37a7d/upstream

Tree @f7f1d4ab-f47d-491a-9551-e10119b37a7d/upstream (Download .tar.gz)

Makefile @f7f1d4ab-f47d-491a-9551-e10119b37a7d/upstreamraw · 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