Skip to content

Commit 7f1ac13

Browse files
authored
Merge pull request #47 from siliconcompiler/fix-wheel
fix manifest for wheel to ensure templates are included
2 parents a8099fa + 26877f3 commit 7f1ac13

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

MANIFEST.in

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# stuff we need to include into the sdist is handled automatically by
2+
# setuptools_scm - it includes all git-committed files.
3+
# but we want to exclude some committed files/dirs not needed in the sdist:
4+
prune .github
5+
prune scripts
6+
prune docs
7+
prune tests
8+
prune lambdalib/padring/
9+
prune lambdalib/*lib/

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ requires = [
66
build-backend = "setuptools.build_meta"
77

88
[tool.setuptools]
9-
include-package-data = false
9+
include-package-data = true
1010
packages = [
1111
"lambdalib"
1212
]

0 commit comments

Comments
 (0)