-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
@echo off | ||
echo 更新依赖中... | ||
echo update... | ||
pip install -U setuptools wheel twine | ||
echo 打包中... | ||
echo package... | ||
python setup.py sdist bdist_wheel | ||
echo 上传包... | ||
echo upload... | ||
twine upload dist/* | ||
echo 清理打包环境.. | ||
echo clean.. | ||
if exist dist ( | ||
rd /s /Q build | ||
rd /s /Q build | ||
rd /s /Q dist | ||
rd /s /Q v2ray_util.egg-info | ||
rd /s /Q v2ray_util\__pycache__ | ||
rd /s /Q v2ray_util\util_core\__pycache__ | ||
) | ||
echo 打包完成! | ||
echo finish! | ||
pause |