Skip to content

Commit

Permalink
Fix poetry 1.7.0 packaging issues. Stub out empty website module
Browse files Browse the repository at this point in the history
The current project could not be installed: [Errno 3] No such file or directory: README.rst
The current project could not be installed: No file/folder found for package website

- python-poetry/poetry#1132
- python-poetry/poetry#1537
- python-poetry/poetry#2458
- https://discuss.python.org/t/projects-that-arent-meant-to-generate-a-wheel-and-pyproject-toml/29684
  • Loading branch information
tony committed Nov 4, 2023
1 parent 88da19f commit 1eb8a0d
Showing 2 changed files with 12 additions and 3 deletions.
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "git-pull-website"
name = "website"
version = "0.3.0"
description = "git-pull website"

@@ -9,8 +9,6 @@ authors = [
"Tony Narlock <[email protected]>",
]

readme = 'README.rst'

homepage = "https://www.git-pull.com"

[tool.poetry.urls]
11 changes: 11 additions & 0 deletions website.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""Fix poetry 1.7.0 packaging issues. Stub out empty website module
- The current project could not be installed: [Errno 3] No such file or directory:
README.rst
- The current project could not be installed: No file/folder found for package website
- https://github.com/python-poetry/poetry/issues/1132
- https://github.com/python-poetry/poetry/issues/1537
- https://github.com/python-poetry/poetry/issues/2458
- https://discuss.python.org/t/projects-that-arent-meant-to-generate-a-wheel-and-pyproject-toml/29684
"""

0 comments on commit 1eb8a0d

Please sign in to comment.