~loggerhead-team/loggerhead/trunk-rich

60 by Robey Pointer
add a manifest and a makefile
1
PYTHON ?= python
2
3
dist:
4
	$(PYTHON) ./setup.py sdist
5
6
clean:
7
	rm -rf dist/
8
9