pybiolib 1.2.841__py3-none-any.whl → 1.2.849__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.
- biolib/_internal/templates/init_template/.github/workflows/biolib.yml +3 -0
- biolib/_internal/templates/init_template/.gitignore +2 -0
- biolib/cli/init.py +4 -2
- {pybiolib-1.2.841.dist-info → pybiolib-1.2.849.dist-info}/METADATA +1 -1
- {pybiolib-1.2.841.dist-info → pybiolib-1.2.849.dist-info}/RECORD +8 -7
- {pybiolib-1.2.841.dist-info → pybiolib-1.2.849.dist-info}/LICENSE +0 -0
- {pybiolib-1.2.841.dist-info → pybiolib-1.2.849.dist-info}/WHEEL +0 -0
- {pybiolib-1.2.841.dist-info → pybiolib-1.2.849.dist-info}/entry_points.txt +0 -0
biolib/cli/init.py
CHANGED
@@ -29,7 +29,8 @@ def init() -> None:
|
|
29
29
|
|
30
30
|
try:
|
31
31
|
# First pass: check for conflicts
|
32
|
-
for root,
|
32
|
+
for root, dirs, filenames in os.walk(template_dir):
|
33
|
+
dirs[:] = [d for d in dirs if '__pycache__' not in d]
|
33
34
|
relative_dir = os.path.relpath(root, template_dir)
|
34
35
|
destination_dir = cwd if relative_dir == '.' else os.path.join(cwd, relative_dir)
|
35
36
|
for filename in filenames:
|
@@ -48,7 +49,8 @@ def init() -> None:
|
|
48
49
|
replace_app_uri = app_uri if app_uri else 'PUT_APP_URI_HERE'
|
49
50
|
|
50
51
|
# Second pass: copy files (only if no conflicts)
|
51
|
-
for root,
|
52
|
+
for root, dirs, filenames in os.walk(template_dir):
|
53
|
+
dirs[:] = [d for d in dirs if '__pycache__' not in d]
|
52
54
|
relative_dir = os.path.relpath(root, template_dir)
|
53
55
|
destination_dir = os.path.join(cwd, relative_dir)
|
54
56
|
os.makedirs(destination_dir, exist_ok=True)
|
@@ -25,7 +25,8 @@ biolib/_internal/push_application.py,sha256=I7yHGcwK6udc2hVmOQIc1BcQBipAMibEjURM
|
|
25
25
|
biolib/_internal/runtime.py,sha256=BiHl4klUHr36MCpqKaUso4idHeBZfPAahLYRQrabFqA,486
|
26
26
|
biolib/_internal/templates/__init__.py,sha256=NVbhLUMC8HITzkLvP88Qu7FHaL-SvQord-DX3gh1Ykk,24
|
27
27
|
biolib/_internal/templates/init_template/.biolib/config.yml,sha256=y4ndTgbFvUE1UiGcIOqogT2Wm8jahGffeyU5rlCEltQ,427
|
28
|
-
biolib/_internal/templates/init_template/.github/workflows/biolib.yml,sha256=
|
28
|
+
biolib/_internal/templates/init_template/.github/workflows/biolib.yml,sha256=sphjoiycV_oc4VbaA8wbUEokSMpnrdB6N-bYju_5Ibo,522
|
29
|
+
biolib/_internal/templates/init_template/.gitignore,sha256=dR_jhtT0boUspgk3S5PPUwuO0o8gKGIbdwu8IH638CY,20
|
29
30
|
biolib/_internal/templates/init_template/Dockerfile,sha256=Wv2r9aiazkL1wOf_BT1f5Kx_-txfrqSkYTtWI8HGdL8,169
|
30
31
|
biolib/_internal/templates/init_template/requirements.txt,sha256=2GnBHsKg4tX5F06Z4YeLuId6jQO3-HGTITsaVBTDG0Y,42
|
31
32
|
biolib/_internal/templates/init_template/run.py,sha256=GS2qGGmFGIthdxdSxZbGktwZc8x3Q2IVLubpp7hEROw,529
|
@@ -82,7 +83,7 @@ biolib/cli/__init__.py,sha256=IHC2bEyA27pvgp-18SGfFVJOP456elanz7suDP8D084,1316
|
|
82
83
|
biolib/cli/auth.py,sha256=rpWGmXs6Fz6CGrO9K8ibPRszOdXG78Vig_boKaVCD9A,2082
|
83
84
|
biolib/cli/data_record.py,sha256=t8DfJK2EZ_SNZ9drDA_N5Jqy8DNwf9f5SlFrIaOvtv0,3501
|
84
85
|
biolib/cli/download_container.py,sha256=HIZVHOPmslGE5M2Dsp9r2cCkAEJx__vcsDz5Wt5LRos,483
|
85
|
-
biolib/cli/init.py,sha256=
|
86
|
+
biolib/cli/init.py,sha256=v6ebi969q4lMfBBjJEUbG50Z8J5vA1fkTYeVfm7iZ7Y,4083
|
86
87
|
biolib/cli/lfs.py,sha256=z2qHUwink85mv9yDgifbVKkVwuyknGhMDTfly_gLKJM,4151
|
87
88
|
biolib/cli/push.py,sha256=pSFEUQkQ69M__eR1nIT9ejW4V4_MtX3lb8ydEc1uKiM,1484
|
88
89
|
biolib/cli/run.py,sha256=MCo0ZqW2pHBxOoCI3i5gAx5D0auW9fmxHqkAF4TRhms,2134
|
@@ -139,8 +140,8 @@ biolib/utils/cache_state.py,sha256=u256F37QSRIVwqKlbnCyzAX4EMI-kl6Dwu6qwj-Qmag,3
|
|
139
140
|
biolib/utils/multipart_uploader.py,sha256=XvGP1I8tQuKhAH-QugPRoEsCi9qvbRk-DVBs5PNwwJo,8452
|
140
141
|
biolib/utils/seq_util.py,sha256=Ozk0blGtPur_D9MwShD02r_mphyQmgZkx-lOHOwnlIM,6730
|
141
142
|
biolib/utils/zip/remote_zip.py,sha256=0wErYlxir5921agfFeV1xVjf29l9VNgGQvNlWOlj2Yc,23232
|
142
|
-
pybiolib-1.2.
|
143
|
-
pybiolib-1.2.
|
144
|
-
pybiolib-1.2.
|
145
|
-
pybiolib-1.2.
|
146
|
-
pybiolib-1.2.
|
143
|
+
pybiolib-1.2.849.dist-info/LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
|
144
|
+
pybiolib-1.2.849.dist-info/METADATA,sha256=UlTaTo40YBd8gZtteran9j4D6Evi-bGOkEDS13e-r-c,1570
|
145
|
+
pybiolib-1.2.849.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
146
|
+
pybiolib-1.2.849.dist-info/entry_points.txt,sha256=p6DyaP_2kctxegTX23WBznnrDi4mz6gx04O5uKtRDXg,42
|
147
|
+
pybiolib-1.2.849.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|