forked from mwilliamson/python-mammoth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
39 lines (29 loc) · 789 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.PHONY: test upload clean bootstrap setup
test:
_virtualenv/bin/pyflakes mammoth tests
sh -c '. _virtualenv/bin/activate; nosetests tests'
test-all:
tox
upload: setup assert-converted-readme
python setup.py sdist bdist_wheel upload
make clean
register: setup
python setup.py register
README: README.md
pandoc --from=markdown --to=rst README.md > README || cp README.md README
assert-converted-readme:
test "`cat README`" != "`cat README.md`"
clean:
rm -f README
rm -f MANIFEST
rm -rf dist
bootstrap: _virtualenv setup
_virtualenv/bin/pip install -e .
ifneq ($(wildcard test-requirements.txt),)
_virtualenv/bin/pip install -r test-requirements.txt
endif
make clean
setup: README
_virtualenv:
virtualenv _virtualenv
_virtualenv/bin/pip install 'distribute>=0.6.45'