kademlia/Makefile

15 lines
412 B
Makefile
Raw Normal View History

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