mopidy-jellyfin/Makefile
2017-10-27 10:05:38 +02:00

21 lines
398 B
Makefile

.PHONY: init upload build clean
init:
pipenv --two --site-packages
pipenv install --dev
build:
python setup.py sdist bdist_wheel
clean:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -rf {} +
rm -rf .tox
rm -rf dist/
pypi: clean
python setup.py sdist bdist_wheel
twine upload dist/*