bioguider 0.2.16__py3-none-any.whl → 0.2.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 bioguider might be problematic. Click here for more details.

@@ -134,6 +134,8 @@ class EvaluationSubmissionRequirementsTask(EvaluationTask):
134
134
  structured_install_evaluation = self.installation_evaluation.structured_evaluation
135
135
  software_dependency = structured_install_evaluation.dependency_number > 0
136
136
  install_tutorial = structured_install_evaluation.install_tutorial
137
+ hardware_requirements = structured_install_evaluation.hardware_requirements
138
+ compatible_os = structured_install_evaluation.compatible_os
137
139
  license = any([
138
140
  self.readme_files_evaluation[f].structured_evaluation.license_score \
139
141
  if self.readme_files_evaluation[f].structured_evaluation is not None \
@@ -150,6 +152,8 @@ class EvaluationSubmissionRequirementsTask(EvaluationTask):
150
152
  software_dependency=software_dependency,
151
153
  install_tutorial=install_tutorial,
152
154
  license=license,
155
+ hardware_requirements=hardware_requirements,
156
+ compatible_os=compatible_os,
153
157
  )
154
158
 
155
159
  def _evaluate(self, files):
@@ -91,6 +91,7 @@ class StructuredEvaluationInstallationResult(BaseModel):
91
91
  dependency_suggestions: Optional[str]=Field(description="A string value. It is the specific improvements if necessary, such as missing dependencies")
92
92
  compatible_os: Optional[bool]=Field(description="A boolean value. Is compatible operating system described?")
93
93
  overall_score: Optional[str]=Field(description="A overall scroll for the installation quality, could be `Poor`, `Fair`, `Good`, or `Excellent`")
94
+ hardware_requirements: Optional[bool]=Field(description="A boolean value. Is the hardware requirements described?")
94
95
 
95
96
  class FreeEvaluationInstallationResult(BaseModel):
96
97
  ease_of_access: Optional[str]=Field(description="A string including assessment and suggestions for the ease of access of the installation information")
@@ -126,3 +127,5 @@ class EvaluationSubmissionRequirementsResult(BaseModel):
126
127
  software_dependency: bool
127
128
  install_tutorial: bool
128
129
  license: bool
130
+ hardware_requirements: bool
131
+ compatible_os: bool
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bioguider
3
- Version: 0.2.16
3
+ Version: 0.2.17
4
4
  Summary: An AI-Powered package to help biomedical developers to generate clear documentation
5
5
  License: MIT
6
6
  Author: Cankun Wang
@@ -19,7 +19,7 @@ bioguider/agents/dockergeneration_task.py,sha256=mYmorLKnJ-Jku3Qq_Y_kcSTsbYIo3Ri
19
19
  bioguider/agents/dockergeneration_task_utils.py,sha256=v7emqrJlVW-A5ZdLmPSdiaMSKCR8uzy9UYzx_1cgzyo,9041
20
20
  bioguider/agents/evaluation_installation_task.py,sha256=mbPRZK6gVEPt-XjDl76_Q71meqFkofFnGPDMq5csL7I,9496
21
21
  bioguider/agents/evaluation_readme_task.py,sha256=l0QJAFEE0eBcF2WTDO3S4qPHCJujHPPkfi29tTZf9nI,25223
22
- bioguider/agents/evaluation_submission_requirements_task.py,sha256=hlEB3_XTgKiwYLiGaWo1kHLFdYKx4NK3EX73zUzeIQY,7584
22
+ bioguider/agents/evaluation_submission_requirements_task.py,sha256=J_6C-M2AfYue2C-gWBHl7KqGrTBuFBn9zmMV5vSRk-U,7834
23
23
  bioguider/agents/evaluation_task.py,sha256=4UrcUCy8UIVLd1NpBpqGgmudqeSK3wWI3Jm8LEYySbY,12661
24
24
  bioguider/agents/identification_execute_step.py,sha256=w3IjL8f2WiHCyiLjVSoySnIAXpi1-hK1DLKCnXbAN2Y,5587
25
25
  bioguider/agents/identification_observe_step.py,sha256=Me5mhEM4e7FGnVFcluNtqfhIxzng6guGIu39xi1TrS8,4341
@@ -39,13 +39,13 @@ bioguider/rag/data_pipeline.py,sha256=bkJ2IUCgPx_OL2uZtPd6cIBor2VFZEIfGd5kVlmiPj
39
39
  bioguider/rag/embedder.py,sha256=jofR8hOj3Aj2IyBQ9y6FeAc84tgq5agbIfCGyFxYpJ8,650
40
40
  bioguider/rag/rag.py,sha256=JFPwrJlKDSyd3U3Gce_NSxI5343eNUbqPG9Fs5Pfoq0,4696
41
41
  bioguider/settings.py,sha256=BD_iz9aYarxmWUl0XaKl4-D4oTXMhFzljsXLNn2phis,3143
42
- bioguider/utils/constants.py,sha256=0e08fByA7a6V7umHyTc7dbOg9axZT6eIgxX_zh4NXQ0,7728
42
+ bioguider/utils/constants.py,sha256=ZZqNsW59P1c2-vm5VP-IhWRNrVdYvWmvfa537oEVl3A,7904
43
43
  bioguider/utils/default.gitignore,sha256=XjPdyO2KV8z8iyuqluaNR_70tBQftMpyKL8HboVNyeI,1605
44
44
  bioguider/utils/file_utils.py,sha256=9VfAHsz1UkFPtzAmvWZvPl1TMaKIYNjNlLgsfB8tNjg,3683
45
45
  bioguider/utils/gitignore_checker.py,sha256=pOYUwsS9D5014LxcZb0cj3s2CAYaD2uF_pYJpaNKcho,6532
46
46
  bioguider/utils/pyphen_utils.py,sha256=cdZc3qphkvMDeL5NiZ8Xou13M_uVNP7ifJ-FwxO-0BE,2680
47
47
  bioguider/utils/utils.py,sha256=aWtgdvB04gEiJTfQNK4aQPO1mxv2zRZTbDaGUBy9DFc,2275
48
- bioguider-0.2.16.dist-info/LICENSE,sha256=qzkvZcKwwA5DuSuhXMOm2LcO6BdEr4V7jwFZVL2-jL4,1065
49
- bioguider-0.2.16.dist-info/METADATA,sha256=_aiIJAMXdRo04JI5rH-YRDUQT_E3PqvLy4l2YkPKKVk,1868
50
- bioguider-0.2.16.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
51
- bioguider-0.2.16.dist-info/RECORD,,
48
+ bioguider-0.2.17.dist-info/LICENSE,sha256=qzkvZcKwwA5DuSuhXMOm2LcO6BdEr4V7jwFZVL2-jL4,1065
49
+ bioguider-0.2.17.dist-info/METADATA,sha256=aUDhIK7X_YRYTp12m_MX1EDphsKaZDcQlnaGR_h34AM,1868
50
+ bioguider-0.2.17.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
51
+ bioguider-0.2.17.dist-info/RECORD,,