Skip to content

Commit

Permalink
Change README filename to rst and update Python version (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtomlinson committed Nov 20, 2020
1 parent c178a89 commit 04fa84a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,14 @@
license="BSD",
packages=find_packages(),
include_package_data=True,
long_description=(open("README.md").read() if exists("README.md") else ""),
long_description=(open("README.rst").read() if exists("README.rst") else ""),
long_description_content_type="text/x-rst",
zip_safe=False,
install_requires=list(open("requirements.txt").read().strip().split("\n")),
extras_require=extras_require,
entry_points="""
[console_scripts]
dask-ecs=dask_cloudprovider.cli.ecs:go
""",
python_requires=">=3.5",
python_requires=">=3.7",
)

0 comments on commit 04fa84a

Please sign in to comment.