Skip to content

Commit 64241f0

Browse files
authored
Merge pull request #32 from slashml/readme-updates
update readme
2 parents ce09daa + 6886f53 commit 64241f0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ def read_req_file(req_type):
88
requires = (line.strip() for line in fp)
99
return [req for req in requires if req and not req.startswith("#")]
1010

11+
# Read the contents of the README file
12+
with open("README.md", "r") as fh:
13+
long_description = fh.read()
1114

1215
setup(
1316
name="slashml",
@@ -18,6 +21,7 @@ def read_req_file(req_type):
1821
description=(
1922
"A Python client for interacting with SlashML services" "Developed by SlashML."
2023
),
24+
long_description=long_description, # Use the contents of the README file
2125
packages=find_packages("."),
2226
package_dir={"": "."},
2327
install_requires=read_req_file("install"),

0 commit comments

Comments
 (0)