forked from mwilliamson/jq.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
32 lines (25 loc) · 695 Bytes
/
Copy pathmakefile
File metadata and controls
32 lines (25 loc) · 695 Bytes
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
.PHONY: test test-all upload register clean bootstrap
test: bootstrap
_virtualenv/bin/nosetests tests
upload: jq.c
python setup.py sdist upload
make clean
register:
python setup.py register
clean:
rm -f MANIFEST
rm -rf dist
bootstrap: _virtualenv jq.c
_virtualenv/bin/pip install -e .
ifneq ($(wildcard test-requirements.txt),)
_virtualenv/bin/pip install -r test-requirements.txt
endif
make clean
_virtualenv:
python3 -m venv _virtualenv
_virtualenv/bin/pip install --upgrade pip
_virtualenv/bin/pip install --upgrade setuptools
_virtualenv/bin/pip install --upgrade wheel
jq.c: _virtualenv jq.pyx
_virtualenv/bin/pip install cython==0.29.16
_virtualenv/bin/cython jq.pyx