-
Notifications
You must be signed in to change notification settings - Fork 428
Fix PyPI README rendering metadata #1341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -47,6 +47,7 @@ | |
| maintainer_email='quantum-oss-maintainers@google.com', | ||
| description=('The electronic structure package for quantum computers.'), | ||
| long_description=long_description, | ||
| long_description_content_type='text/markdown', | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Setting To fix this, please update lines 23-25 to read the file directly without prepending the redundant header: with open('README.md', 'r', encoding='utf-8') as readme:
long_description = readme.read() |
||
| python_requires='>=3.10.0', | ||
| install_requires=requirements, | ||
| extras_require={'resources': resource_requirements}, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is not necessary; the original URL works, as can be seen from the fact that the same URL pattern works for the Cirq project on pypi.org.