mirror of
https://github.com/paradoxxxzero/butterfly.git
synced 2025-01-12 04:18:13 +00:00
10 lines
268 B
Text
10 lines
268 B
Text
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
|