/
githubmirror
/
developer
Обзор
Документация
Войти
/
githubmirror
/
developer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Makefile
14 строк
324 B
swyxio
upload for pranav to stop going crazy
11 июл 2023, 07:33
11 июл 2023, 07:33
bfb45fc
Код
Авторство
О чём код?
.PHONY: clean build publish build: clean python -m pip install --upgrade --quiet setuptools wheel twine python3 -m build # python setup.py --quiet sdist bdist_wheel publish: build python -m twine check dist/* # python -m twine upload dist/* python3 -m twine upload dist/* clean: rm -r build dist *.egg-info || true