1 Star 0 Fork 1

alikzz/PPdiffusers-webui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 636 Bytes
一键复制 编辑 原始数据 按行查看 历史
一心炼银 提交于 2023-04-11 10:37 . #
.DEFAULT_GOAL := all
.PHONY: all
all: deploy-version build deploy
.PHONY: build
build:
python3 setup.py sdist bdist_wheel
.PHONY: deploy
deploy:
make deploy-version
twine upload --skip-existing dist/*
.PHONY: deploy-version
deploy-version:
echo "VERSION = '$$(cat VERSION)'" > ppdiffusers/version.py
.PHONY: install
install:
pip install -r requirements.txt
.PHONY: version
version:
@newVersion=$$(awk -F. '{print $$1"."$$2"."$$3+1}' < VERSION) \
&& echo $${newVersion} > VERSION \
&& git add VERSION \
&& git commit -m "🔥 update version to $${newVersion}" > /dev/null \
&& echo "Bumped version to $${newVersion}"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/alikzz/PPdiffusers-webui.git
git@gitee.com:alikzz/PPdiffusers-webui.git
alikzz
PPdiffusers-webui
PPdiffusers-webui
ppdiffusers

搜索帮助