pybiolib 1.2.939__py3-none-any.whl → 1.2.942__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/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
- copilot_input = input('Do you want to include Copilot style prompts? [y/N]: ')
27
- include_copilot_style = copilot_input.lower() == 'y'
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
- add_copilot_prompts(force=False, style=include_copilot_style, silent=True)
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)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pybiolib
3
- Version: 1.2.939
3
+ Version: 1.2.942
4
4
  Summary: BioLib Python Client
5
5
  License: MIT
6
6
  Keywords: biolib
@@ -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=OMYIltLJfF8q9VAvzDwNG0-1VixDkFGEN1ic2VhrW7c,4583
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.939.dist-info/LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
149
- pybiolib-1.2.939.dist-info/METADATA,sha256=kPWSZXEhVmT-z_Wq2qmHvnhfksdAhH4eu8vOwxah3lU,1570
150
- pybiolib-1.2.939.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
151
- pybiolib-1.2.939.dist-info/entry_points.txt,sha256=p6DyaP_2kctxegTX23WBznnrDi4mz6gx04O5uKtRDXg,42
152
- pybiolib-1.2.939.dist-info/RECORD,,
148
+ pybiolib-1.2.942.dist-info/LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
149
+ pybiolib-1.2.942.dist-info/METADATA,sha256=tz9k4DMqK5D-cE76rso9xl3k6c0w6hTSBDkYqQXJqaM,1570
150
+ pybiolib-1.2.942.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
151
+ pybiolib-1.2.942.dist-info/entry_points.txt,sha256=p6DyaP_2kctxegTX23WBznnrDi4mz6gx04O5uKtRDXg,42
152
+ pybiolib-1.2.942.dist-info/RECORD,,