mirror of
https://github.com/paradoxxxzero/butterfly.git
synced 2024-12-22 04:08:30 +00:00
11 lines
268 B
Makefile
11 lines
268 B
Makefile
PROJECT_NAME = butterfly
|
|
|
|
# Python env
|
|
PYTHON_VERSION ?= python
|
|
VENV = $(PWD)/.env$(if $(filter $(PYTHON_VERSION),python),,-$(PYTHON_VERSION))
|
|
PIP = $(VENV)/bin/pip
|
|
PYTHON = $(VENV)/bin/python
|
|
PYTEST = $(VENV)/bin/py.test
|
|
NODE_MODULES = $(PWD)/node_modules
|
|
NPM = yarn
|