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.
long_description
setup
1 parent f1afe9b commit f3a739eCopy full SHA for f3a739e
setup.py
@@ -4,6 +4,10 @@
4
with open("requirements.txt") as f:
5
required = f.read().splitlines()
6
7
+# Read the contents of your README.md file for the project description
8
+with open("README.md", "r", encoding="utf-8") as readme_file:
9
+ long_description = readme_file.read()
10
+
11
setup(
12
name="self-operating-computer",
13
version="1.0.2",
@@ -14,5 +18,7 @@
14
18
"operate=operate.main:main_entry",
15
19
],
16
20
},
21
+ long_description=long_description, # Add project description here
22
+ long_description_content_type="text/markdown", # Specify Markdown format
17
23
# include any other necessary setup options here
24
)
0 commit comments