dayhoff-tools 1.0.4__py3-none-any.whl → 1.0.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.
@@ -0,0 +1,58 @@
1
+ Metadata-Version: 2.3
2
+ Name: dayhoff-tools
3
+ Version: 1.0.5
4
+ Summary: Common tools for all the repos at Dayhoff Labs
5
+ Author: Daniel Martin-Alarcon
6
+ Author-email: dma@dayhofflabs.com
7
+ Requires-Python: >=3.10,<4.0
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
13
+ Provides-Extra: core
14
+ Requires-Dist: biopython (>=1.84) ; extra == "core"
15
+ Requires-Dist: boto3 (>=1.36.8) ; extra == "core"
16
+ Requires-Dist: docker (>=7.1.0) ; extra == "core"
17
+ Requires-Dist: fair-esm (>=2.0.0) ; extra == "core"
18
+ Requires-Dist: firebase-admin (>=6.5.0)
19
+ Requires-Dist: h5py (>=3.11.0) ; extra == "core"
20
+ Requires-Dist: pyyaml (>=6.0)
21
+ Requires-Dist: questionary (>=2.0.1) ; extra == "core"
22
+ Requires-Dist: requests (>=2.31.0)
23
+ Requires-Dist: typer (>=0.9.0)
24
+ Description-Content-Type: text/markdown
25
+
26
+ # dayhoff-tools
27
+
28
+ A set of small, sharp tools for everyone at Dayhoff. Hosted on PyPi, so you can Poetry or pip install like everything else.
29
+
30
+ ## Installation
31
+
32
+ The base package includes minimal dependencies required for core CLI functionality (like job running):
33
+
34
+ ```bash
35
+ pip install dayhoff-tools
36
+ # or
37
+ poetry add dayhoff-tools
38
+ ```
39
+
40
+ ### Optional Dependencies
41
+
42
+ You can install extra sets of dependencies using brackets. Available groups are:
43
+
44
+ * `core`: Includes common data science and bioinformatics tools (`biopython`, `boto3`, `docker`, `fair-esm`, `h5py`, `questionary`).
45
+ * `dev`: Includes development and testing tools (`black`, `pytest`, `pandas`, `numpy`, `torch`, etc.).
46
+ * `all`: Includes all dependencies from both `core` and `dev`.
47
+
48
+ **Examples:**
49
+
50
+ ```bash
51
+ # Install with core dependencies
52
+ pip install 'dayhoff-tools[core]'
53
+ poetry add 'dayhoff-tools[core]'
54
+
55
+ # Install with all dependencies
56
+ pip install 'dayhoff-tools[all]'
57
+ poetry add 'dayhoff-tools[all]'
58
+ ```
@@ -25,7 +25,7 @@ dayhoff_tools/sqlite.py,sha256=jV55ikF8VpTfeQqqlHSbY8OgfyfHj8zgHNpZjBLos_E,18672
25
25
  dayhoff_tools/structure.py,sha256=ufN3gAodQxhnt7psK1VTQeu9rKERmo_PhoxIbB4QKMw,27660
26
26
  dayhoff_tools/uniprot.py,sha256=BZYJQF63OtPcBBnQ7_P9gulxzJtqyorgyuDiPeOJqE4,16456
27
27
  dayhoff_tools/warehouse.py,sha256=TqV8nex1AluNaL4JuXH5zuu9P7qmE89lSo6f_oViy6U,14965
28
- dayhoff_tools-1.0.4.dist-info/METADATA,sha256=6redvtvKbCTPTcoxILn4dPLj4HrkqJP_M8dYbQdxmaE,3949
29
- dayhoff_tools-1.0.4.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
30
- dayhoff_tools-1.0.4.dist-info/entry_points.txt,sha256=iAf4jteNqW3cJm6CO6czLxjW3vxYKsyGLZ8WGmxamSc,49
31
- dayhoff_tools-1.0.4.dist-info/RECORD,,
28
+ dayhoff_tools-1.0.5.dist-info/METADATA,sha256=LE_AxsDAgFzG6oW_i2YL3sZOfbC0V1JDpAidC40Yfek,1930
29
+ dayhoff_tools-1.0.5.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
30
+ dayhoff_tools-1.0.5.dist-info/entry_points.txt,sha256=iAf4jteNqW3cJm6CO6czLxjW3vxYKsyGLZ8WGmxamSc,49
31
+ dayhoff_tools-1.0.5.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.0.1
2
+ Generator: poetry-core 2.1.2
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,99 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: dayhoff-tools
3
- Version: 1.0.4
4
- Summary: Common tools for all the repos at Dayhoff Labs
5
- Author: Daniel Martin-Alarcon
6
- Author-email: dma@dayhofflabs.com
7
- Requires-Python: >=3.10,<4.0
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: Programming Language :: Python :: 3.10
10
- Classifier: Programming Language :: Python :: 3.11
11
- Classifier: Programming Language :: Python :: 3.12
12
- Classifier: Programming Language :: Python :: 3.13
13
- Provides-Extra: all
14
- Provides-Extra: core
15
- Provides-Extra: dev
16
- Requires-Dist: biopython (>=1.84) ; extra == "all"
17
- Requires-Dist: biopython (>=1.84) ; extra == "core"
18
- Requires-Dist: black (>=25.1.0) ; extra == "all"
19
- Requires-Dist: black (>=25.1.0) ; extra == "dev"
20
- Requires-Dist: boto3 (>=1.36.8) ; extra == "all"
21
- Requires-Dist: boto3 (>=1.36.8) ; extra == "core"
22
- Requires-Dist: colorlog (>=6.8.2) ; extra == "all"
23
- Requires-Dist: colorlog (>=6.8.2) ; extra == "dev"
24
- Requires-Dist: docker (>=7.1.0) ; extra == "all"
25
- Requires-Dist: docker (>=7.1.0) ; extra == "core"
26
- Requires-Dist: dvc (>=3.48.2) ; extra == "all"
27
- Requires-Dist: dvc (>=3.48.2) ; extra == "dev"
28
- Requires-Dist: dvc-gs (>=3.0.1) ; extra == "all"
29
- Requires-Dist: dvc-gs (>=3.0.1) ; extra == "dev"
30
- Requires-Dist: fair-esm (>=2.0.0) ; extra == "all"
31
- Requires-Dist: fair-esm (>=2.0.0) ; extra == "core"
32
- Requires-Dist: firebase-admin (>=6.5.0)
33
- Requires-Dist: flake8 (>=7.0.0) ; extra == "all"
34
- Requires-Dist: flake8 (>=7.0.0) ; extra == "dev"
35
- Requires-Dist: h5py (>=3.11.0) ; extra == "all"
36
- Requires-Dist: h5py (>=3.11.0) ; extra == "core"
37
- Requires-Dist: isort (>=5.13.2) ; extra == "all"
38
- Requires-Dist: isort (>=5.13.2) ; extra == "dev"
39
- Requires-Dist: numpy (<2.0.0) ; extra == "all"
40
- Requires-Dist: numpy (<2.0.0) ; extra == "dev"
41
- Requires-Dist: pandas (>=2.2.3) ; extra == "dev"
42
- Requires-Dist: pylance (>=0.10.2) ; extra == "all"
43
- Requires-Dist: pylance (>=0.10.2) ; extra == "dev"
44
- Requires-Dist: pylint (>=3.1.0) ; extra == "all"
45
- Requires-Dist: pylint (>=3.1.0) ; extra == "dev"
46
- Requires-Dist: pytest (>=8.0.2) ; extra == "all"
47
- Requires-Dist: pytest (>=8.0.2) ; extra == "dev"
48
- Requires-Dist: pytest-cov (>=4.1.0) ; extra == "all"
49
- Requires-Dist: pytest-cov (>=4.1.0) ; extra == "dev"
50
- Requires-Dist: pytest-mock (>=3.12.0) ; extra == "all"
51
- Requires-Dist: pytest-mock (>=3.12.0) ; extra == "dev"
52
- Requires-Dist: pyyaml (>=6.0)
53
- Requires-Dist: questionary (>=2.0.1) ; extra == "all"
54
- Requires-Dist: questionary (>=2.0.1) ; extra == "core"
55
- Requires-Dist: rdkit-pypi (>=2022.9.5) ; extra == "all"
56
- Requires-Dist: rdkit-pypi (>=2022.9.5) ; extra == "dev"
57
- Requires-Dist: requests (>=2.31.0)
58
- Requires-Dist: torch (>=1.10.0) ; extra == "all"
59
- Requires-Dist: torch (>=1.10.0) ; extra == "dev"
60
- Requires-Dist: torchvision (>=0.11.0) ; extra == "all"
61
- Requires-Dist: torchvision (>=0.11.0) ; extra == "dev"
62
- Requires-Dist: transformers (>=4.20.0) ; extra == "all"
63
- Requires-Dist: transformers (>=4.36.2) ; extra == "dev"
64
- Requires-Dist: typer (>=0.9.0)
65
- Description-Content-Type: text/markdown
66
-
67
- # dayhoff-tools
68
-
69
- A set of small, sharp tools for everyone at Dayhoff. Hosted on PyPi, so you can Poetry or pip install like everything else.
70
-
71
- ## Installation
72
-
73
- The base package includes minimal dependencies required for core CLI functionality (like job running):
74
-
75
- ```bash
76
- pip install dayhoff-tools
77
- # or
78
- poetry add dayhoff-tools
79
- ```
80
-
81
- ### Optional Dependencies
82
-
83
- You can install extra sets of dependencies using brackets. Available groups are:
84
-
85
- * `core`: Includes common data science and bioinformatics tools (`biopython`, `boto3`, `docker`, `fair-esm`, `h5py`, `questionary`).
86
- * `dev`: Includes development and testing tools (`black`, `pytest`, `pandas`, `numpy`, `torch`, etc.).
87
- * `all`: Includes all dependencies from both `core` and `dev`.
88
-
89
- **Examples:**
90
-
91
- ```bash
92
- # Install with core dependencies
93
- pip install 'dayhoff-tools[core]'
94
- poetry add 'dayhoff-tools[core]'
95
-
96
- # Install with all dependencies
97
- pip install 'dayhoff-tools[all]'
98
- poetry add 'dayhoff-tools[all]'
99
- ```