dayhoff-tools 1.11.4__py3-none-any.whl → 1.11.5__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.
- dayhoff_tools/cli/utility_commands.py +14 -0
 - {dayhoff_tools-1.11.4.dist-info → dayhoff_tools-1.11.5.dist-info}/METADATA +2 -1
 - {dayhoff_tools-1.11.4.dist-info → dayhoff_tools-1.11.5.dist-info}/RECORD +5 -5
 - {dayhoff_tools-1.11.4.dist-info → dayhoff_tools-1.11.5.dist-info}/WHEEL +0 -0
 - {dayhoff_tools-1.11.4.dist-info → dayhoff_tools-1.11.5.dist-info}/entry_points.txt +0 -0
 
| 
         @@ -544,6 +544,10 @@ def sync_with_toml( 
     | 
|
| 
       544 
544 
     | 
    
         
             
                        mac_pyproject = mac_uv_dir / "pyproject.toml"
         
     | 
| 
       545 
545 
     | 
    
         
             
                        mac_pyproject.write_text(mac_manifest.read_text())
         
     | 
| 
       546 
546 
     | 
    
         | 
| 
      
 547 
     | 
    
         
            +
                        # Copy README.md if it exists (required by some build backends)
         
     | 
| 
      
 548 
     | 
    
         
            +
                        if Path("README.md").exists():
         
     | 
| 
      
 549 
     | 
    
         
            +
                            (mac_uv_dir / "README.md").write_text(Path("README.md").read_text())
         
     | 
| 
      
 550 
     | 
    
         
            +
             
     | 
| 
       547 
551 
     | 
    
         
             
                        # Ensure lock matches manifest (in mac temp dir)
         
     | 
| 
       548 
552 
     | 
    
         
             
                        print("Ensuring lock file matches pyproject.mac.toml (Mac devcon)…")
         
     | 
| 
       549 
553 
     | 
    
         
             
                        lock_cmd = ["uv", "lock"]
         
     | 
| 
         @@ -587,6 +591,10 @@ def sync_with_toml( 
     | 
|
| 
       587 
591 
     | 
    
         
             
                            aws_pyproject = aws_uv_dir / "pyproject.toml"
         
     | 
| 
       588 
592 
     | 
    
         
             
                            aws_pyproject.write_text(aws_manifest.read_text())
         
     | 
| 
       589 
593 
     | 
    
         | 
| 
      
 594 
     | 
    
         
            +
                            # Copy README.md if it exists (required by some build backends)
         
     | 
| 
      
 595 
     | 
    
         
            +
                            if Path("README.md").exists():
         
     | 
| 
      
 596 
     | 
    
         
            +
                                (aws_uv_dir / "README.md").write_text(Path("README.md").read_text())
         
     | 
| 
      
 597 
     | 
    
         
            +
             
     | 
| 
       590 
598 
     | 
    
         
             
                            # Ensure lock matches manifest (in aws temp dir)
         
     | 
| 
       591 
599 
     | 
    
         
             
                            print("Ensuring lock file matches pyproject.aws.toml (AWS devcon)…")
         
     | 
| 
       592 
600 
     | 
    
         
             
                            lock_cmd = ["uv", "lock"]
         
     | 
| 
         @@ -994,6 +1002,9 @@ def update_dependencies( 
     | 
|
| 
       994 
1002 
     | 
    
         
             
                    if platform == "mac" and mac_manifest.exists():
         
     | 
| 
       995 
1003 
     | 
    
         
             
                        mac_uv_dir.mkdir(parents=True, exist_ok=True)
         
     | 
| 
       996 
1004 
     | 
    
         
             
                        (mac_uv_dir / "pyproject.toml").write_text(mac_manifest.read_text())
         
     | 
| 
      
 1005 
     | 
    
         
            +
                        # Copy README.md if it exists (required by some build backends)
         
     | 
| 
      
 1006 
     | 
    
         
            +
                        if Path("README.md").exists():
         
     | 
| 
      
 1007 
     | 
    
         
            +
                            (mac_uv_dir / "README.md").write_text(Path("README.md").read_text())
         
     | 
| 
       997 
1008 
     | 
    
         
             
                        uv_cwd = str(mac_uv_dir)
         
     | 
| 
       998 
1009 
     | 
    
         
             
                        lock_file_path = mac_uv_dir / "uv.lock"
         
     | 
| 
       999 
1010 
     | 
    
         
             
                        manifest_path_for_constraint = mac_manifest
         
     | 
| 
         @@ -1001,6 +1012,9 @@ def update_dependencies( 
     | 
|
| 
       1001 
1012 
     | 
    
         
             
                        # AWS platform (default)
         
     | 
| 
       1002 
1013 
     | 
    
         
             
                        aws_uv_dir.mkdir(parents=True, exist_ok=True)
         
     | 
| 
       1003 
1014 
     | 
    
         
             
                        (aws_uv_dir / "pyproject.toml").write_text(aws_manifest.read_text())
         
     | 
| 
      
 1015 
     | 
    
         
            +
                        # Copy README.md if it exists (required by some build backends)
         
     | 
| 
      
 1016 
     | 
    
         
            +
                        if Path("README.md").exists():
         
     | 
| 
      
 1017 
     | 
    
         
            +
                            (aws_uv_dir / "README.md").write_text(Path("README.md").read_text())
         
     | 
| 
       1004 
1018 
     | 
    
         
             
                        uv_cwd = str(aws_uv_dir)
         
     | 
| 
       1005 
1019 
     | 
    
         
             
                        lock_file_path = aws_uv_dir / "uv.lock"
         
     | 
| 
       1006 
1020 
     | 
    
         
             
                        manifest_path_for_constraint = aws_manifest
         
     | 
| 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            Metadata-Version: 2.4
         
     | 
| 
       2 
2 
     | 
    
         
             
            Name: dayhoff-tools
         
     | 
| 
       3 
     | 
    
         
            -
            Version: 1.11. 
     | 
| 
      
 3 
     | 
    
         
            +
            Version: 1.11.5
         
     | 
| 
       4 
4 
     | 
    
         
             
            Summary: Common tools for all the repos at Dayhoff Labs
         
     | 
| 
       5 
5 
     | 
    
         
             
            Author: Daniel Martin-Alarcon
         
     | 
| 
       6 
6 
     | 
    
         
             
            Author-email: dma@dayhofflabs.com
         
     | 
| 
         @@ -29,6 +29,7 @@ Requires-Dist: pyyaml (>=6.0) 
     | 
|
| 
       29 
29 
     | 
    
         
             
            Requires-Dist: questionary (>=2.0.1)
         
     | 
| 
       30 
30 
     | 
    
         
             
            Requires-Dist: rdkit-pypi (>=2022.9.5) ; extra == "full"
         
     | 
| 
       31 
31 
     | 
    
         
             
            Requires-Dist: requests (>=2.31.0)
         
     | 
| 
      
 32 
     | 
    
         
            +
            Requires-Dist: seaborn
         
     | 
| 
       32 
33 
     | 
    
         
             
            Requires-Dist: sentencepiece (>=0.2.0) ; extra == "embedders"
         
     | 
| 
       33 
34 
     | 
    
         
             
            Requires-Dist: sentencepiece (>=0.2.0) ; extra == "full"
         
     | 
| 
       34 
35 
     | 
    
         
             
            Requires-Dist: sqlalchemy (>=2.0.40,<3.0.0) ; extra == "full"
         
     | 
| 
         @@ -12,7 +12,7 @@ dayhoff_tools/cli/engine/shared.py,sha256=Ecx6I1jtzmxQDn3BezKpgpQ4SJeZf4SZjUCLg- 
     | 
|
| 
       12 
12 
     | 
    
         
             
            dayhoff_tools/cli/engine/studio_commands.py,sha256=VwTQujz32-uMcYusDRE73SdzRpgvIkv7ZAF4zRv6AzA,30266
         
     | 
| 
       13 
13 
     | 
    
         
             
            dayhoff_tools/cli/main.py,sha256=Ii5boey--93yGthB_eS2LC7ZR3WHGsJXDHY7uElEtso,6169
         
     | 
| 
       14 
14 
     | 
    
         
             
            dayhoff_tools/cli/swarm_commands.py,sha256=5EyKj8yietvT5lfoz8Zx0iQvVaNgc3SJX1z2zQR6o6M,5614
         
     | 
| 
       15 
     | 
    
         
            -
            dayhoff_tools/cli/utility_commands.py,sha256= 
     | 
| 
      
 15 
     | 
    
         
            +
            dayhoff_tools/cli/utility_commands.py,sha256=i2Lg5gEU3KKs4Nv8rn4o4-tPUFiR5Ygk2CiUzo78dSM,43470
         
     | 
| 
       16 
16 
     | 
    
         
             
            dayhoff_tools/deployment/base.py,sha256=48KE76QlWMeIZJefcBOZVbyChS2V_mgs7IQ31odPV2o,17806
         
     | 
| 
       17 
17 
     | 
    
         
             
            dayhoff_tools/deployment/deploy_aws.py,sha256=gfqh09hGbz0q3oPqVm0imd_CEjKF2k8moGNRIL26qqE,18614
         
     | 
| 
       18 
18 
     | 
    
         
             
            dayhoff_tools/deployment/deploy_gcp.py,sha256=xgaOVsUDmP6wSEMYNkm1yRNcVskfdz80qJtCulkBIAM,8860
         
     | 
| 
         @@ -33,7 +33,7 @@ dayhoff_tools/intake/uniprot.py,sha256=BZYJQF63OtPcBBnQ7_P9gulxzJtqyorgyuDiPeOJq 
     | 
|
| 
       33 
33 
     | 
    
         
             
            dayhoff_tools/logs.py,sha256=DKdeP0k0kliRcilwvX0mUB2eipO5BdWUeHwh-VnsICs,838
         
     | 
| 
       34 
34 
     | 
    
         
             
            dayhoff_tools/sqlite.py,sha256=jV55ikF8VpTfeQqqlHSbY8OgfyfHj8zgHNpZjBLos_E,18672
         
     | 
| 
       35 
35 
     | 
    
         
             
            dayhoff_tools/warehouse.py,sha256=UETBtZD3r7WgvURqfGbyHlT7cxoiVq8isjzMuerKw8I,24475
         
     | 
| 
       36 
     | 
    
         
            -
            dayhoff_tools-1.11. 
     | 
| 
       37 
     | 
    
         
            -
            dayhoff_tools-1.11. 
     | 
| 
       38 
     | 
    
         
            -
            dayhoff_tools-1.11. 
     | 
| 
       39 
     | 
    
         
            -
            dayhoff_tools-1.11. 
     | 
| 
      
 36 
     | 
    
         
            +
            dayhoff_tools-1.11.5.dist-info/METADATA,sha256=nSXreTQEikR5j9pMMKqJ9pP9hMJZ2Av5GseA_iGVtHM,3003
         
     | 
| 
      
 37 
     | 
    
         
            +
            dayhoff_tools-1.11.5.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
         
     | 
| 
      
 38 
     | 
    
         
            +
            dayhoff_tools-1.11.5.dist-info/entry_points.txt,sha256=iAf4jteNqW3cJm6CO6czLxjW3vxYKsyGLZ8WGmxamSc,49
         
     | 
| 
      
 39 
     | 
    
         
            +
            dayhoff_tools-1.11.5.dist-info/RECORD,,
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     |