Correct path for .whl files in Makefile.

This commit is contained in:
Tyson Clugg 2015-10-14 01:54:45 +11:00
parent 8acdf40a1b
commit f1fb3d76ab

View file

@ -2,7 +2,7 @@ NAME := $(shell python setup.py --name)
VERSION := $(shell python setup.py --version)
SDIST := dist/${NAME}-${VERSION}.tar.gz
WHEEL := dist/${NAME}-${VERSION}-py2.py3-none-any.whl
WHEEL := dist/$(subst -,_,${NAME})-${VERSION}-py2.py3-none-any.whl
.PHONY: all test clean clean-docs upload-docs upload-pypi dist docs