mirror of https://github.com/yandex/gixy
11 lines
206 B
Makefile
11 lines
206 B
Makefile
|
.PHONY: all build publish
|
||
|
|
||
|
all: build publish
|
||
|
|
||
|
build:
|
||
|
python setup.py bdist_wheel --universal sdist
|
||
|
|
||
|
publish:
|
||
|
twine upload dist/gixy-`grep -oP "(?<=version\s=\s['\"])[^'\"]*(?=['\"])" gixy/__init__.py`*
|
||
|
|