Skip to content

Commit

Permalink
Added python_requires into setup.py #85
Browse files Browse the repository at this point in the history
  • Loading branch information
GwennyGit committed Aug 21, 2023
1 parent 4cfa7f6 commit 1f3be81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@
url='https://github.com/draeger-lab/refinegems',
license='MIT',
packages=['refinegems'],
python_requires ='>=3.8, <3.10',
install_requires = [
"cobra==0.22.0",
"biopython==1.79",
"bioregistry",
"bioservices",
"importlib_resources==5.13.0",
"importlib-resources<=5.13.0",
"memote==0.13.0",
"pandas==1.2.4",
"numpy==1.20.3",
Expand All @@ -33,7 +34,6 @@
"venn==0.1.3",
"ols-client==0.1.3",
"seaborn==0.12.2",
"sqlalchemy==1.4.43",
"click==8.1.3"
],
zip_safe=False,
Expand Down

1 comment on commit 1f3be81

@GwennyGit
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Python versions in the setup.py file were derived from the Pipfile.lock file.

Please sign in to comment.