Skip to content

Commit e77babf

Browse files
committed
Add improved description based upon README
1 parent eabb460 commit e77babf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,15 @@ def no_compile(self, file_path):
9595
# Example: Exclude files in a 'tests' directory
9696
return target_directory in file_path
9797

98+
this_directory = Path(__file__).parent
99+
long_description = (this_directory / "README.md").read_text()
98100

99101
setup(
100102
name='quarto-cli',
101103
version=version,
102104
description='Open-source scientific and technical publishing system built on Pandoc.',
103-
long_description='Open-source scientific and technical publishing system built on Pandoc.',
105+
long_description=long_description,
106+
long_description_content_type='text/markdown',
104107
packages=['quarto_cli'],
105108
entry_points={
106109
'console_scripts': [

0 commit comments

Comments
 (0)