Skip to content

Commit

Permalink
fix: Actually include scripts in build
Browse files Browse the repository at this point in the history
Not namespaced though :(
  • Loading branch information
ditsuke committed Feb 28, 2024
1 parent c14653c commit f2f09c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Empty file removed __init__.py
Empty file.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ readme = "README.md"
homepage = "https://ggml.ai"
repository = "https://github.com/ggerganov/llama.cpp"
keywords = ["ggml", "gguf", "llama.cpp"]
packages = [{ include = "__init__.py", from = "." }]
packages = [{ include = "*.py", from = "." }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand All @@ -21,7 +21,7 @@ sentencepiece = ">=0.1.98,<0.2.0"
transformers = ">=4.35.2,<5.0.0"
protobuf = ">=4.21.0,<5.0.0"
gguf = { path = "./gguf-py" }
torch = {version = "^2.2.0", source = "pytorch"}
torch = { version = "^2.2.0", source = "pytorch" }

[tool.poetry.dev-dependencies]
pytest = "^5.2"
Expand Down

0 comments on commit f2f09c0

Please sign in to comment.