소스 검색

Exclude dist folder when creating source package

Matthias Reso 1 년 전
부모
커밋
bd9f933c77
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  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"]