-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
70 lines (47 loc) · 1.61 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Copyright (c) 2015 Fabian Barkhau <[email protected]>
# License: MIT (see LICENSE file)
PYTHON_VERSION = 3
WHEEL_DIR = /tmp/wheelhouse
USE_WHEEL = --use-wheel --no-index --find-links=$(WHEEL_DIR)
PIP = env/bin/pip
PY = env/bin/python
export PYCOIN_NATIVE = openssl
help:
@echo "Some usefull development shortcuts."
@echo " clean Remove all generated files."
@echo " setup Setup development environment."
@echo " shell Open ipython from the development environment."
@echo " test Run tests and analysis tools."
@echo " wheel Build package wheel and save in '$(WHEEL_DIR)'."
@echo " wheels Build dependencie wheels and save in '$(WHEEL_DIR)'."
@echo " publish Build and upload package to pypi.python.org"
clean:
rm -rf env
rm -rf build
rm -rf dist
rm -rf *.egg
rm -rf *.egg-info
find | grep -i ".*\.pyc$$" | xargs -r -L1 rm
virtualenv: clean
virtualenv -p /usr/bin/python$(PYTHON_VERSION) env
$(PIP) install wheel
wheels: virtualenv
$(PIP) wheel --wheel-dir=$(WHEEL_DIR) -r requirements.txt
$(PIP) wheel --wheel-dir=$(WHEEL_DIR) -r test_requirements.txt
$(PIP) wheel --wheel-dir=$(WHEEL_DIR) -r develop_requirements.txt
wheel: test
$(PY) setup.py bdist_wheel
mv dist/*.whl $(WHEEL_DIR)
setup: virtualenv
$(PIP) install $(USE_WHEEL) -r requirements.txt
$(PIP) install $(USE_WHEEL) -r test_requirements.txt
$(PIP) install $(USE_WHEEL) -r develop_requirements.txt
install: setup
$(PY) setup.py install
shell: setup
env/bin/ipython
test: setup
$(PY) setup.py test
publish: test
$(PY) setup.py register sdist upload
# import pudb; pu.db # set break point