rakeshcusat commented on issue #30145: URL: https://github.com/apache/beam/issues/30145#issuecomment-2724845233
@tvalentyn / @damccorm should this be referring readme.md file instead. ``` from setuptools import setup # read the contents of your README file from pathlib import Path this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text() setup( name='an_example_package', # other arguments omitted long_description=long_description, long_description_content_type='text/markdown' ) ``` Scipy uses something similar. In that case there will be only one source of truth and get update automatically as soon as the readme file is updated. What do you guys think? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org