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.
1 parent eabb460 commit e77babfCopy full SHA for e77babf
setup.py
@@ -95,12 +95,15 @@ def no_compile(self, file_path):
95
# Example: Exclude files in a 'tests' directory
96
return target_directory in file_path
97
98
+this_directory = Path(__file__).parent
99
+long_description = (this_directory / "README.md").read_text()
100
101
setup(
102
name='quarto-cli',
103
version=version,
104
description='Open-source scientific and technical publishing system built on Pandoc.',
- long_description='Open-source scientific and technical publishing system built on Pandoc.',
105
+ long_description=long_description,
106
+ long_description_content_type='text/markdown',
107
packages=['quarto_cli'],
108
entry_points={
109
'console_scripts': [
0 commit comments