pybiolib 1.2.939__py3-none-any.whl → 1.2.944__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/types/experiment.py +1 -0
- biolib/cli/init.py +9 -3
- {pybiolib-1.2.939.dist-info → pybiolib-1.2.944.dist-info}/METADATA +1 -1
- {pybiolib-1.2.939.dist-info → pybiolib-1.2.944.dist-info}/RECORD +7 -7
- {pybiolib-1.2.939.dist-info → pybiolib-1.2.944.dist-info}/LICENSE +0 -0
- {pybiolib-1.2.939.dist-info → pybiolib-1.2.944.dist-info}/WHEEL +0 -0
- {pybiolib-1.2.939.dist-info → pybiolib-1.2.944.dist-info}/entry_points.txt +0 -0
@@ -20,6 +20,7 @@ class DeprecatedExperimentDict(TypedDict):
|
|
20
20
|
class ExperimentDict(DeprecatedExperimentDict):
|
21
21
|
uuid: Optional[str]
|
22
22
|
name: Optional[str]
|
23
|
+
account_uuid: Optional[str]
|
23
24
|
created_at: Optional[str]
|
24
25
|
finished_at: Optional[str]
|
25
26
|
last_created_at: Optional[str]
|
biolib/cli/init.py
CHANGED
@@ -23,8 +23,13 @@ def init() -> None:
|
|
23
23
|
'Remember to set the app URI in the .biolib/config.yml file later, '
|
24
24
|
'and docker image name in the .biolib/config.yml and .github/workflows/biolib.yml files.'
|
25
25
|
)
|
26
|
-
|
27
|
-
|
26
|
+
copilot_enabled_input = input('Do you want to include Copilot instructions and prompts? [y/N]: ')
|
27
|
+
include_copilot_enabled = copilot_enabled_input.lower() == 'y'
|
28
|
+
|
29
|
+
include_copilot_style = True # Default to True if copilot is enabled
|
30
|
+
if include_copilot_enabled:
|
31
|
+
copilot_style_input = input('Do you want to include Copilot style prompts? [Y/n]: ')
|
32
|
+
include_copilot_style = copilot_style_input.lower() != 'n'
|
28
33
|
|
29
34
|
template_dir = templates.init_template()
|
30
35
|
conflicting_files = []
|
@@ -94,7 +99,8 @@ def init() -> None:
|
|
94
99
|
with open(readme_path, 'w') as readme_file:
|
95
100
|
readme_file.write(f'# {app_name}\n')
|
96
101
|
|
97
|
-
|
102
|
+
if include_copilot_enabled:
|
103
|
+
add_copilot_prompts(force=False, style=include_copilot_style, silent=True)
|
98
104
|
|
99
105
|
except KeyboardInterrupt:
|
100
106
|
print('\nInit command cancelled.', file=sys.stderr)
|
@@ -40,7 +40,7 @@ biolib/_internal/types/__init__.py,sha256=WvtlSHh77QhYVTLeRpoPAzqvByLzbEPf_ZqYGH
|
|
40
40
|
biolib/_internal/types/account.py,sha256=wxbOLze9SR5TTiB521S34IlrkGSpez9PYhQ11v45tNU,141
|
41
41
|
biolib/_internal/types/app.py,sha256=Mz2QGD_jESX-K9JYnLWPo4YA__Q_1FQQTk9pvidCohU,118
|
42
42
|
biolib/_internal/types/data_record.py,sha256=9r_vdhVs60YTnzU4XQFXfDrfS2P2MqD3BH2xa7lk6ck,852
|
43
|
-
biolib/_internal/types/experiment.py,sha256=
|
43
|
+
biolib/_internal/types/experiment.py,sha256=7WERhHnkbO3qrPWZyJmu-KrKOGRXaX5xdLBUNHh17KE,714
|
44
44
|
biolib/_internal/types/file_node.py,sha256=T6BIqo662f3nwMBRqtBHYsg6YuuUaKpiokHcVjv9_ME,283
|
45
45
|
biolib/_internal/types/push.py,sha256=qSXCjdzOmHG7_QiwXaNSrVkESTMxnIKPvEut-9Mqt-g,108
|
46
46
|
biolib/_internal/types/resource.py,sha256=LQnIYBR8Fi7zvnA5vBpzcL2c6ZjpaKNTe38hXck82k0,449
|
@@ -88,7 +88,7 @@ biolib/cli/__init__.py,sha256=IHC2bEyA27pvgp-18SGfFVJOP456elanz7suDP8D084,1316
|
|
88
88
|
biolib/cli/auth.py,sha256=rpWGmXs6Fz6CGrO9K8ibPRszOdXG78Vig_boKaVCD9A,2082
|
89
89
|
biolib/cli/data_record.py,sha256=t8DfJK2EZ_SNZ9drDA_N5Jqy8DNwf9f5SlFrIaOvtv0,3501
|
90
90
|
biolib/cli/download_container.py,sha256=HIZVHOPmslGE5M2Dsp9r2cCkAEJx__vcsDz5Wt5LRos,483
|
91
|
-
biolib/cli/init.py,sha256=
|
91
|
+
biolib/cli/init.py,sha256=GH_9GxfihhTKqn9-aAX6eFJR5GU2lCbKhpVeVcIccN0,4919
|
92
92
|
biolib/cli/lfs.py,sha256=z2qHUwink85mv9yDgifbVKkVwuyknGhMDTfly_gLKJM,4151
|
93
93
|
biolib/cli/push.py,sha256=J8BswMYVeTacZBHbm4K4a2XbS_I8kvfgRZLoby2wi3I,1695
|
94
94
|
biolib/cli/run.py,sha256=RAAXbIx8Bi-4fNkEoz2ODJ0fEtyS7VxD3dkc2fVZwjY,2150
|
@@ -145,8 +145,8 @@ biolib/utils/cache_state.py,sha256=u256F37QSRIVwqKlbnCyzAX4EMI-kl6Dwu6qwj-Qmag,3
|
|
145
145
|
biolib/utils/multipart_uploader.py,sha256=XvGP1I8tQuKhAH-QugPRoEsCi9qvbRk-DVBs5PNwwJo,8452
|
146
146
|
biolib/utils/seq_util.py,sha256=Ozk0blGtPur_D9MwShD02r_mphyQmgZkx-lOHOwnlIM,6730
|
147
147
|
biolib/utils/zip/remote_zip.py,sha256=0wErYlxir5921agfFeV1xVjf29l9VNgGQvNlWOlj2Yc,23232
|
148
|
-
pybiolib-1.2.
|
149
|
-
pybiolib-1.2.
|
150
|
-
pybiolib-1.2.
|
151
|
-
pybiolib-1.2.
|
152
|
-
pybiolib-1.2.
|
148
|
+
pybiolib-1.2.944.dist-info/LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
|
149
|
+
pybiolib-1.2.944.dist-info/METADATA,sha256=arTNo9s7vabdn7SDQn3uTtt-wP9P9mmpoVWhntRqOsY,1570
|
150
|
+
pybiolib-1.2.944.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
151
|
+
pybiolib-1.2.944.dist-info/entry_points.txt,sha256=p6DyaP_2kctxegTX23WBznnrDi4mz6gx04O5uKtRDXg,42
|
152
|
+
pybiolib-1.2.944.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|