Skip to content

Commit

Permalink
Added makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Jul 23, 2010
1 parent 89057c9 commit ebfc55a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions Makefile
@@ -0,0 +1,14 @@
.PHONY: clean-pyc test upload-docs

all: clean-pyc test

test:
python tests.py

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

upload-docs:
$(MAKE) -C docs html
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -16,7 +16,7 @@

setup(
name='Flask-OpenID',
version='1.0.1',
version='1.0.2',
url='http://github.com/mitsuhiko/flask-openid/',
license='BSD',
author='Armin Ronacher',
Expand Down

0 comments on commit ebfc55a

Please sign in to comment.