- flexmeasures-entsoe: ENTSO-E data plugin - flexmeasures-weather: Weather data plugin - USEF Flex Trading Protocol PDF (2.4MB) - Cariflex simulator (publishes to Redis) - Dashboard Grafana updated with correct InfluxDB queries - All tools extracted in /tools/
21 lines
329 B
Makefile
21 lines
329 B
Makefile
# Note: use tabs
|
|
# actions which are virtual, i.e. not a script
|
|
.PHONY: install install-for-dev test
|
|
|
|
|
|
install:
|
|
pip install -e .
|
|
|
|
|
|
# ---- Development ---
|
|
|
|
test:
|
|
make install-for-dev
|
|
pytest
|
|
|
|
install-for-dev:
|
|
pip install -r requirements/app.in -r requirements/dev.in -r requirements/test.in
|
|
make install
|
|
pre-commit install
|
|
|