mirror of
https://github.com/Sitoi/dailycheckin.git
synced 2024-11-17 13:48:03 +08:00
df742a681a
♻️ 重构(dailycheckin/bilibili):移除未使用的requests.utils导入 ✨ 功能(dailycheckin/bilibili):添加不进行硬币兑换的日志消息
16 lines
270 B
Makefile
Executable File
16 lines
270 B
Makefile
Executable File
.PHONY: clean sdist upload pre-commit mkdocs
|
|
|
|
sdist: clean
|
|
python3 setup.py sdist bdist_wheel --universa
|
|
|
|
upload: clean
|
|
python3 setup.py upload
|
|
|
|
clean:
|
|
rm -rf build dailycheckin.egg-info dist
|
|
|
|
pre-commit:
|
|
pre-commit run --all-files
|
|
|
|
mkdocs:
|
|
mkdocs gh-deploy --force
|