kademlia/Makefile

12 lines
379 B
Makefile
Raw Normal View History

2014-01-03 03:39:06 +01:00
PYDOCTOR=pydoctor
docs:
$(PYDOCTOR) --make-html --html-output apidoc --add-package rpcudp --project-name=rpcudp --project-url=http://github.com/bmuller/rpcudp --html-use-sorttable --html-use-splitlinks --html-shorten-lists
lint:
pep8 --ignore=E303,E251,E201,E202 ./rpcudp --max-line-length=140
find ./rpcudp -name '*.py' | xargs pyflakes
install:
python setup.py install