forked from JEstabrook/regulon-enrichment
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
relaxing package dependency pins in setup.py
- Loading branch information
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]', | ||
|
@@ -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' | ||
] | ||
) |