Skip to content

Commit

Permalink
fix: typo in package_dirs (#12)
Browse files Browse the repository at this point in the history
* fix: typo in package_dirs

* fix: add bwa C-headers to the source build
  • Loading branch information
nh13 authored Jan 16, 2025
1 parent cb8bac6 commit 38b7381
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def build():
'classifiers': [_f for _f in CLASSIFIERS.split('\n') if _f],
'url': 'https://github.com/fulcrumgenomics/pybwa',
'packages': ['pybwa'],
'package_dirs': {'pybwa': 'pybwa'},
'package_dir': {'pybwa': 'pybwa'},
"ext_modules": extension_modules,
"cmdclass": {
"build_ext": cython_build_ext,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ include = [
{ path = "pybwa/**/*.so", format = "wheel" },
{ path = "**/*.so", format = "wheel" },
{ path = "*.so", format = "wheel" },
{ path = "bwa/*.h", format = "wheel" },
{ path = "bwa/*.h", format = ["sdist", "wheel"] },
]

[tool.poetry.build]
Expand Down

0 comments on commit 38b7381

Please sign in to comment.