Skip to content

Commit f3a739e

Browse files
committed
Add long_description to setup
1 parent f1afe9b commit f3a739e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
with open("requirements.txt") as f:
55
required = f.read().splitlines()
66

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+
711
setup(
812
name="self-operating-computer",
913
version="1.0.2",
@@ -14,5 +18,7 @@
1418
"operate=operate.main:main_entry",
1519
],
1620
},
21+
long_description=long_description, # Add project description here
22+
long_description_content_type="text/markdown", # Specify Markdown format
1723
# include any other necessary setup options here
1824
)

0 commit comments

Comments
 (0)