bcmd 0.5.16__py3-none-any.whl → 0.5.17__py3-none-any.whl

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/tasks/venv.py CHANGED
@@ -51,14 +51,14 @@ async def install_benimang(
51
51
  async def install_base(
52
52
  path: Path = typer.Option(None, '--path', help='指定路径,默认当前目录'),
53
53
  isOfficial: bool = typer.Option(False, '--official', help='是否使用官方地址安装(https://pypi.org/simple)'),
54
- isReinstall: bool = typer.Option(False, '--reinstall', help='是否清空venv目录后重新安装'),
54
+ isCleanup: bool = typer.Option(False, '--cleanup', help='是否清空venv目录后重新安装'),
55
55
  ):
56
56
  '安装基础库'
57
57
  await _venv(
58
58
  path=path,
59
59
  isOfficial=isOfficial,
60
60
  isUseBase=True,
61
- isCleanup=isReinstall,
61
+ isCleanup=isCleanup,
62
62
  )
63
63
 
64
64
 
@@ -67,14 +67,14 @@ async def install_base(
67
67
  async def install_lock(
68
68
  path: Path = typer.Option(None, '--path', help='指定路径,默认当前目录'),
69
69
  isOfficial: bool = typer.Option(False, '--official', help='是否使用官方地址安装(https://pypi.org/simple)'),
70
- isReinstall: bool = typer.Option(False, '--reinstall', help='是否清空venv目录后重新安装'),
70
+ isCleanup: bool = typer.Option(False, '--cleanup', help='是否清空venv目录后重新安装'),
71
71
  ):
72
72
  '安装指定版本的库'
73
73
  await _venv(
74
74
  path=path,
75
75
  isOfficial=isOfficial,
76
76
  isUseLock=True,
77
- isCleanup=isReinstall,
77
+ isCleanup=isCleanup,
78
78
  )
79
79
 
80
80
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: bcmd
3
- Version: 0.5.16
3
+ Version: 0.5.17
4
4
  Summary: Commands for Beni
5
5
  Author-email: Beni Mang <benimang@126.com>
6
6
  Maintainer-email: Beni Mang <benimang@126.com>
@@ -24,10 +24,10 @@ bcmd/tasks/project.py,sha256=yLYL6WNmq0mlY-hQ-SGKZ6uRjwceJxpgbP-QAo0Wk-Y,1948
24
24
  bcmd/tasks/proxy.py,sha256=xvxN5PClUnc5LQpmq2Wug7_LUVpJboMWLXBvL9lX7EM,1552
25
25
  bcmd/tasks/time.py,sha256=ZiqA1jdgl-TBtFSOxxP51nwv4g9iZItmkFKpf9MKelk,2453
26
26
  bcmd/tasks/upgrade.py,sha256=ZiyecgVbnnoTU_LAsd78CIKA4ioc9so9pXpAM76b_0M,447
27
- bcmd/tasks/venv.py,sha256=a7ZDyagUPQvCAXx3cZJIqJt0p1Iy5u5qmmj8iRbDQZE,7673
27
+ bcmd/tasks/venv.py,sha256=O7E-6FYoMsB4p1UM9m6_bljI-oBmlKg4AJWtsCln-8k,7661
28
28
  bcmd/tasks/wasabi.py,sha256=xWFAxprSIlBqDDMGaNXZFb-SahnW1d_R9XxSKRYIhnM,3110
29
- bcmd-0.5.16.dist-info/METADATA,sha256=FzL072W4dRsFfcC4HsqNJDz92pazZpDtIdeXGJK5MPM,500
30
- bcmd-0.5.16.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
31
- bcmd-0.5.16.dist-info/entry_points.txt,sha256=rHJrP6KEQpB-YaQqDFzEL2v88r03rxSfnzAayRvAqHU,39
32
- bcmd-0.5.16.dist-info/top_level.txt,sha256=-KrvhhtBcYsm4XhcjQvEcFbBB3VXeep7d3NIfDTrXKQ,5
33
- bcmd-0.5.16.dist-info/RECORD,,
29
+ bcmd-0.5.17.dist-info/METADATA,sha256=4Z6DuWwyZOa1AOj-dSa3JL0c153qk8B5QfcEYRgE4xY,500
30
+ bcmd-0.5.17.dist-info/WHEEL,sha256=DK49LOLCYiurdXXOXwGJm6U4DkHkg4lcxjhqwRa0CP4,91
31
+ bcmd-0.5.17.dist-info/entry_points.txt,sha256=rHJrP6KEQpB-YaQqDFzEL2v88r03rxSfnzAayRvAqHU,39
32
+ bcmd-0.5.17.dist-info/top_level.txt,sha256=-KrvhhtBcYsm4XhcjQvEcFbBB3VXeep7d3NIfDTrXKQ,5
33
+ bcmd-0.5.17.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (76.1.0)
2
+ Generator: setuptools (78.0.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5