Initial move of code from git repo.

This commit is contained in:
Simon Forman
2018-04-14 18:13:13 -07:00
commit beb7155b4a
98 changed files with 271093 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
# My make-fu style is old and tired. I just want to have a few helper commands.
TESTDIR = ./test00
.PHONY: clean sdist test docs
clean:
$(RM) -r Joypy.egg-info/ dist/ $(TESTDIR)
find . -name '*.pyc' | xargs $(RM)
sdist:
python ./setup.py sdist
test: sdist
$(RM) -r $(TESTDIR)
virtualenv --system-site-packages --never-download $(TESTDIR)
. $(TESTDIR)/bin/activate && \
pip install --no-cache-dir --no-index ./dist/Joypy-0.1.tar.gz
echo "Type: source $(TESTDIR)/bin/activate"
docs:
cd ./docs && python -m nbconvert --to html *.ipynb
cd ./docs && python -m nbconvert --to markdown *.ipynb