We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ce09daa + 6886f53 commit 64241f0Copy full SHA for 64241f0
setup.py
@@ -8,6 +8,9 @@ def read_req_file(req_type):
8
requires = (line.strip() for line in fp)
9
return [req for req in requires if req and not req.startswith("#")]
10
11
+# Read the contents of the README file
12
+with open("README.md", "r") as fh:
13
+ long_description = fh.read()
14
15
setup(
16
name="slashml",
@@ -18,6 +21,7 @@ def read_req_file(req_type):
18
21
description=(
19
22
"A Python client for interacting with SlashML services" "Developed by SlashML."
20
23
),
24
+ long_description=long_description, # Use the contents of the README file
25
packages=find_packages("."),
26
package_dir={"": "."},
27
install_requires=read_req_file("install"),
0 commit comments