Skip to content

Commit

Permalink
Fix install path for CHANGELOG.md (#258)
Browse files Browse the repository at this point in the history
The file should not be installed directly in site-packages. Use the
correct include syntax to include them into the source distribution
package only.
  • Loading branch information
mhaehnel authored Jan 2, 2025
1 parent ccd760a commit 351bf66
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ classifiers = [
'Topic :: System :: Distributed Computing',
'Topic :: Software Development :: Libraries :: Python Modules',
]
include = ['CHANGELOG.md']

include = [
{ path = "CHANGELOG.md", format = "sdist" },
]

[tool.poetry.plugins] # Optional super table

Expand Down

0 comments on commit 351bf66

Please sign in to comment.