comparison Makefile @ 7:829eb62755b0

First cut at an HSBC (USA) plugin
author Louis Opter <kalessin@kalessin.fr>
date Thu, 17 Nov 2016 16:25:12 -0800
parents 1f85ed8ed469
children
comparison
equal deleted inserted replaced
6:5692e2a61764 7:829eb62755b0
1 PYTHON=.venv/bin/python 1 PIP=.venv/bin/pip
2 2
3 all: PYTHON 3 all: PYTHON
4 4
5 PYTHON: setup.py 5 PYTHON: setup.py
6 virtualenv -p python3 --no-site-packages .venv 6 virtualenv -p python3 --no-site-packages .venv
7 $(PYTHON) setup.py develop 7 $(PIP) install -e '.[dev]'
8
9 clean:
10 rm -rf .venv