Skip to content

Commit

Permalink
fix: hadamard tensors not included in wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
AlpinDale committed Feb 3, 2024
1 parent 8b6790d commit f99eb2c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,12 @@ def get_requirements() -> List[str]:
install_requires=get_requirements(),
ext_modules=ext_modules,
cmdclass={"build_ext": BuildExtension},
package_data={"aphrodite-engine": ["aphrodite/endpoints/kobold/klite.embd",
"aphrodite/modeling/layers/quantization/hadamard.safetensors",
"py.typed"]},
package_data={
"aphrodite": [
"endpoints/kobold/klite.embd",
"modeling/layers/quantization/hadamard.safetensors",
"py.typed"
]
},
include_package_data=True,
)

0 comments on commit f99eb2c

Please sign in to comment.