Skip to content

Commit

Permalink
relaxing package dependency pins in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yasharw committed Mar 8, 2023
1 parent 58b4600 commit a4d62e3
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import setuptools

setuptools.setup(name='priori',
version='1.0.3',
version='1.0.4',
description="""Priori predicts transcription factor activity from RNA sequencing data using prior, literature-supported regulatory relationship information.""",
author='Joseph Estabrook, William Yashar, & Emek Demir',
author_email='[email protected]',
Expand All @@ -18,14 +18,14 @@
"License :: OSI Approved :: GLP-3.0",
"Operating System :: OS Independent",
],
python_requires = '==3.6.15',
python_requires = '>=3.6.15',
install_requires=[
'numpy==1.19.5',
'pandas==1.1.5',
'scikit-learn==0.23.2',
'scipy==1.5.3',
'tqdm==4.64.0',
'dill==0.3.5.1',
'statsmodels==0.12.2'
'numpy>=1.19.5',
'pandas>=1.1.5',
'scikit-learn>=0.23.2',
'scipy>=1.5.3',
'tqdm>=4.64.0',
'dill>=0.3.5.1',
'statsmodels>=0.12.2'
]
)

0 comments on commit a4d62e3

Please sign in to comment.