Browse Source

Exclude dist folder when creating source package

Matthias Reso 1 year ago
parent
commit
bd9f933c77
1 changed files with 5 additions and 0 deletions
  1. 5 0
      pyproject.toml

+ 5 - 0
pyproject.toml

@@ -24,6 +24,11 @@ dynamic = ["dependencies"]
 "Homepage" = "https://github.com/facebookresearch/llama-recipes/"
 "Bug Tracker" = "https://github.com/facebookresearch/llama-recipes/issues"
 
+[tool.hatch.build]
+exclude = [
+  "dist/*",
+]
+
 [tool.hatch.build.targets.wheel]
 packages = ["src/llama_recipes"]