Skip to content

Commit

Permalink
Make setup.py consistent with conda recipe
Browse files Browse the repository at this point in the history
Inconsistencies in `setup.py` are causing `pip check` to fail
on the conda package.
  • Loading branch information
xylar committed Jan 27, 2023
1 parent 7624232 commit bcdf84b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@
author_email="forsyth2@llnl.gov, golaz1@llnl.gov, shaheen2@llnl.gov",
description="Long term HPSS archiving software for E3SM",
packages=find_packages(include=["zstash", "zstash.*"]),
python_requires=">=3.6",
install_requires=[
"six==1.16.0",
"globus-sdk<4.0.0>=3.0.0",
"fair-research-login==0.2.6",
"six",
"globus-sdk>=2.0.0",
"fair-research-login",
],
entry_points={"console_scripts": ["zstash=zstash.main:main"]},
)

0 comments on commit bcdf84b

Please sign in to comment.