bcmd 0.5.0__tar.gz → 0.5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of bcmd might be problematic. Click here for more details.
- {bcmd-0.5.0 → bcmd-0.5.1}/PKG-INFO +1 -1
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/venv.py +10 -8
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd.egg-info/PKG-INFO +1 -1
- {bcmd-0.5.0 → bcmd-0.5.1}/pyproject.toml +1 -1
- {bcmd-0.5.0 → bcmd-0.5.1}/MANIFEST.in +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/README.md +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/__init__.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/common/__init__.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/common/func.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/common/password.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/main.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/resources/project/.gitignore +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/resources/project/.vscode/launch.json +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/resources/project/.vscode/settings.json +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/resources/project/.vscode/tasks.json +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/resources/project/main.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/__init__.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/bin.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/code.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/crypto.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/debian.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/download.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/image.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/json.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/lib.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/math.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/mirror.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/project.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/proxy.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd/tasks/time.py +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd.egg-info/SOURCES.txt +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd.egg-info/dependency_links.txt +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd.egg-info/entry_points.txt +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd.egg-info/requires.txt +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/bcmd.egg-info/top_level.txt +0 -0
- {bcmd-0.5.0 → bcmd-0.5.1}/setup.cfg +0 -0
|
@@ -33,10 +33,10 @@ async def add(
|
|
|
33
33
|
|
|
34
34
|
@app.command()
|
|
35
35
|
@syncCall
|
|
36
|
-
async def
|
|
36
|
+
async def benimang(
|
|
37
37
|
path: Path = typer.Option(None, '--path', help='指定路径,默认当前目录'),
|
|
38
38
|
):
|
|
39
|
-
'更新 benimang
|
|
39
|
+
'更新 benimang 库,强制使用官方源'
|
|
40
40
|
await _venv(
|
|
41
41
|
['benimang==now'],
|
|
42
42
|
path=path,
|
|
@@ -46,31 +46,33 @@ async def update_benimang(
|
|
|
46
46
|
|
|
47
47
|
@app.command()
|
|
48
48
|
@syncCall
|
|
49
|
-
async def
|
|
49
|
+
async def base(
|
|
50
50
|
path: Path = typer.Option(None, '--path', help='指定路径,默认当前目录'),
|
|
51
51
|
isOfficial: bool = typer.Option(False, '--official', help='是否使用官方地址安装(https://pypi.org/simple)'),
|
|
52
|
+
isReinstall: bool = typer.Option(False, '--reinstall', help='是否清空venv目录后重新安装'),
|
|
52
53
|
):
|
|
53
|
-
'
|
|
54
|
+
'安装基础库'
|
|
54
55
|
await _venv(
|
|
55
56
|
path=path,
|
|
56
57
|
isOfficial=isOfficial,
|
|
57
58
|
isUseBase=True,
|
|
58
|
-
isCleanup=
|
|
59
|
+
isCleanup=isReinstall,
|
|
59
60
|
)
|
|
60
61
|
|
|
61
62
|
|
|
62
63
|
@app.command()
|
|
63
64
|
@syncCall
|
|
64
|
-
async def
|
|
65
|
+
async def lock(
|
|
65
66
|
path: Path = typer.Option(None, '--path', help='指定路径,默认当前目录'),
|
|
66
67
|
isOfficial: bool = typer.Option(False, '--official', help='是否使用官方地址安装(https://pypi.org/simple)'),
|
|
68
|
+
isReinstall: bool = typer.Option(False, '--reinstall', help='是否清空venv目录后重新安装'),
|
|
67
69
|
):
|
|
68
|
-
'
|
|
70
|
+
'安装指定版本的库'
|
|
69
71
|
await _venv(
|
|
70
72
|
path=path,
|
|
71
73
|
isOfficial=isOfficial,
|
|
72
74
|
isUseLock=True,
|
|
73
|
-
isCleanup=
|
|
75
|
+
isCleanup=isReinstall,
|
|
74
76
|
)
|
|
75
77
|
|
|
76
78
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|