Python to generate nice looking SVG graph http://pygal.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
957 B

7 years ago
include Makefile.config
-include Makefile.custom.config
all: install lint check check-outdated
install:
test -d $(VENV) || virtualenv $(VENV) -p $(PYTHON_VERSION)
$(PIP) install --upgrade --upgrade-strategy eager pip setuptools -e .[test,docs] devcore
7 years ago
clean:
rm -fr $(VENV)
rm -fr *.egg-info
lint:
$(PYTEST) --flake8 -m flake8 $(PROJECT_NAME)
$(PYTEST) --isort -m isort $(PROJECT_NAME)
fix:
$(VENV)/bin/yapf -p -i pygal/**/*.py
7 years ago
check:
$(PYTEST) $(PROJECT_NAME) $(PYTEST_ARGS) --cov-report= --cov=pygal
check-outdated:
$(PIP) list --outdated --format=columns
7 years ago
visual-check:
$(PYTHON) demo/moulinrouge.py
7 years ago
.PHONY: docs
docs:
7 years ago
cd docs && PYTHON_PATH=$(VENV) PATH=$(VENV)/bin:$(PATH) $(MAKE) rst html
7 years ago
release: docs
7 years ago
git pull
$(eval VERSION := $(shell PROJECT_NAME=$(PROJECT_NAME) $(VENV)/bin/devcore bump $(LEVEL)))
git commit -am "Bump $(VERSION)"
git tag $(VERSION)
$(PYTHON) setup.py sdist bdist_wheel upload
git push
git push --tags