Skip to content

Commit

Permalink
fix: Wheel paths for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
shadeMe committed Jun 11, 2024
1 parent 90eb38a commit e41b0ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ extra-dependencies = [
]

[tool.hatch.envs.test.scripts]
unit = 'pytest --cov-report xml:coverage.xml --cov="haystack-experimental" -m "not integration" {args:test}'
unit = 'pytest --cov-report xml:coverage.xml --cov="haystack_experimental" -m "not integration" {args:test}'
integration = 'pytest --maxfail=5 -m "integration" {args:test}'
typing = "mypy --install-types --non-interactive {args:haystack_experimental}"
lint = [
Expand All @@ -77,10 +77,10 @@ path = "haystack_experimental/version.py"
allow-direct-references = true

[tool.hatch.build.targets.sdist]
include = ["/haystack-experimental", "/VERSION.txt"]
include = ["/haystack_experimental", "/VERSION.txt"]

[tool.hatch.build.targets.wheel]
packages = ["haystack-experimental"]
packages = ["haystack_experimental"]

[tool.codespell]
ignore-words-list = "ans,astroid,nd,ned,nin,ue,rouge,ist"
Expand Down

0 comments on commit e41b0ed

Please sign in to comment.