Skip to content

Commit

Permalink
Fix wrong location of metadata files
Browse files Browse the repository at this point in the history
The metadata files aren't correctly extracted when the
package is installed using pip. This is because of the
configurations in the pyproject.toml file. This commit
corrects it.

Resolves #44

Signed-off-by: Venu Vardhan Reddy Tekula <[email protected]>
  • Loading branch information
vchrombie committed Jan 3, 2022
1 parent cc5a14a commit d11c66d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ packages = [
]

include = [
"AUTHORS",
"README.md",
"LICENSE",
"NEWS"
{ path = "AUTHORS", format = "sdist" },
{ path = "NEWS", format = "sdist" },
{ path = "README.md", format = "sdist" },
]

classifiers = [
Expand Down

0 comments on commit d11c66d

Please sign in to comment.