Skip to content

Commit

Permalink
Cleaning up setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tjakobi committed Mar 7, 2023
1 parent bbfe548 commit f281ead
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def run(self):
'Try \'pip3 install circtools\'')

elif sys.version_info.minor < 5:
sys.exit('\nSorry, Python < 3.5 is not supported\n')
sys.exit('\nSorry, Python < 3.7 is not supported\n')

# Get the long description from the relevant file
with open(path.join(here, 'README.rst')) as f:
Expand Down Expand Up @@ -130,15 +130,15 @@ def run(self):
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=[
'HTSeq >= 0.11.0',
'pysam >= 0.16.0.1',
'numpy >= 1.14.5',
'pybedtools >= 0.7.10',
'biopython >= 1.71',
'scipy >= 0.19.0',
'reportlab >= 3.3.0',
'pandas >= 0.25.0',
'statsmodels >= 0.9.0'
'numpy >= 1.14.5',
'HTSeq >= 0.11.0',
'pysam >= 0.16.0.1',
'pybedtools >= 0.7.10',
'biopython >= 1.71',
'scipy >= 0.19.0',
'reportlab >= 3.3.0',
'pandas >= 0.25.0',
'statsmodels >= 0.9.0'
],

python_requires='>3.6',
Expand Down

0 comments on commit f281ead

Please sign in to comment.