From 2bad760f3431b5805d080f4a0fff41f18e0a0f5f Mon Sep 17 00:00:00 2001 From: konstin Date: Fri, 13 Nov 2020 15:27:06 +0100 Subject: [PATCH 1/2] Add biopython to requirements --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 0f16e41..121e83e 100644 --- a/setup.py +++ b/setup.py @@ -39,6 +39,7 @@ 'pytorch-lightning>=0.8.1', 'matplotlib', 'pillow', + 'biopython>=1.78,<2.0' ], scripts=glob('scripts/*'), classifiers=classifiers, From e2e8a2cc787f8f1f3bdbbf602405e98f4ecea70e Mon Sep 17 00:00:00 2001 From: konstin Date: Fri, 13 Nov 2020 16:13:58 +0100 Subject: [PATCH 2/2] Add lstm2x.pt to the wheel --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 121e83e..48aa8a1 100644 --- a/setup.py +++ b/setup.py @@ -43,4 +43,6 @@ ], scripts=glob('scripts/*'), classifiers=classifiers, - package_data={}) + package_data={ + 'deepblast': ['pretrained_models/lstm2x.pt'], + })