From 6a97ae2ece034d7e38d6ff663caeac0ea788c0f9 Mon Sep 17 00:00:00 2001 From: srcrowl Date: Tue, 11 Jun 2024 10:11:00 -0400 Subject: [PATCH] Fixed scipy error in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b670719..460d7b8 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ author="Naegle Lab", author_email="kmn4mj@virginia.edu", url="https://github.com/NaegleLab/PTM-POSE/tree/main", - install_requires=['pandas==2.2.*', 'numpy==1.26.*', 'scipy=1.13.*', 'biopython==1.83.*', 'tqdm==4.66.*', 'xlrd', 'matplotlib', 'requests'], + install_requires=['pandas==2.2.*', 'numpy==1.26.*', 'scipy==1.13.*', 'biopython==1.83.*', 'tqdm==4.66.*', 'xlrd', 'matplotlib', 'requests'], license='GNU General Public License v3', description='PTM-POSE: PTM Projection onto Splice Events', long_description="""PTM-POSE is an open-source tool for annotating splice event quantification data with post-translational modifications (PTMs) and their functional consequences.""",