Skip to content

Commit

Permalink
Fix windows installation (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
alejoe91 authored Nov 16, 2024
1 parent 8dedee1 commit d407326
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 14 deletions.
8 changes: 0 additions & 8 deletions MANIFEST.in

This file was deleted.

10 changes: 8 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "wavpack-numcodecs"
version = "0.2.1"
version = "0.2.2"
description = "Numcodecs implementation of WavPack audio codec."
authors = [
{name = "Alessio Buccino", email = "[email protected]"},
Expand Down Expand Up @@ -43,7 +43,7 @@ build-backend = "setuptools.build_meta"

[tool.setuptools]
include-package-data = true
package-data = {"wavpack_numcodecs" = ["**/*.pyx", "**/*.pxd", "**/*.c", "**/*.h", "**/*.so", "**/*.so.*", "**/*.dll"]}
package-data = {"wavpack_numcodecs" = ["**/*.pyx", "**/*.pxd", "**/*.c", "**/*.h", "**/*.so", "**/*.so.*", "**/*.dll", "**/*.lib"]}

[tool.setuptools.exclude-package-data]
wavpack_numcodecs = ["**/tests/test_*"]
Expand All @@ -56,3 +56,9 @@ exclude = ["wavpack_numcodecs.*.tests"]

[tool.black]
line-length = 120

[tool.pytest.ini_options]
markers = [
"numcodecs",
"zarr"
]
4 changes: 0 additions & 4 deletions pytest.ini

This file was deleted.

0 comments on commit d407326

Please sign in to comment.