Skip to content

Commit

Permalink
resolve inclusion of non source files
Browse files Browse the repository at this point in the history
  • Loading branch information
synacktraa committed Dec 6, 2024
1 parent d27cb39 commit 3b09117
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions cookbooks/version-control-and-function-calling.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": null,
"metadata": {},
"outputs": [
{
Expand All @@ -112,7 +112,7 @@
"import orchestr8 as o8\n",
"\n",
"directory = Path(tempdir) / \"orchestr8-tracking\" # We'll be working inside this directory\n",
"directory.mkdir()\n",
"directory.mkdir(exist_ok=True)\n",
"\n",
"tracker = o8.DirectoryTracker(path=directory)\n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion docs/cookbooks/version-control-and-function-calling.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ from pathlib import Path
from tempfile import tempdir

directory = Path(tempdir) / "orchestr8-tracking" # We'll be working inside this directory
directory.mkdir()
directory.mkdir(exist_ok=True)

tracker = o8.DirectoryTracker(path=directory)

Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "orchestr8"
version = "0.0.2"
version = "0.0.3"
description = "A versatile collection of independent components crafted to simplify task automation, particularly for AI workflows."
authors = [{ name = "Harsh Verma", email = "[email protected]" }]
readme = "README.md"
Expand Down Expand Up @@ -82,6 +82,10 @@ cookbooks = [
where = ["."]
include = ["orchestr8*"]

[tool.setuptools]
include-package-data = true
package-data = {"orchestr8" = ["**/*.txt"]}

[tool.mypy]
files = ["orchestr8"]
disallow_untyped_defs = true
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3b09117

Please sign in to comment.