-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #187 from microbiomedata/fix-wheel-project-files
Ensure that project artifacts are included in wheel distribution
- Loading branch information
Showing
4 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,12 @@ description = "The home of the NMDC submission schema. *Not* the home of sheets_ | |
authors = ["Mark Andrew Miller <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
include = ["README.md", "src/nmdc_submission_schema/schema", "project"] | ||
include = [ | ||
# These files are copied from the top-level project folder at build time. Without | ||
# the copy step they end up in a weird location when installed via wheel. | ||
# See: https://github.com/python-poetry/poetry/issues/7153 | ||
{ path = "src/nmdc_submission_schema/project/**/*", format = [ "sdist", "wheel" ] } | ||
] | ||
|
||
# note that the nmdc-schema is not imported as a module, | ||
# but one file from the nmdc-schema is accessed via sheets_and_friends/tsv_in/import_slots_regardless.tsv | ||
|
Empty file.