Skip to content

Commit 1eaa825

Browse files
committed
Bug fixes in Cli and Setup
1 parent 81101cd commit 1eaa825

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
author_email="[email protected]",
88
description="A framework to orchestrate long-running LLM workflows with a persistent task tracker.",
99
url="https://github.com/adv-11/python-weaver",
10-
packages=find_packages(include=['weaver.connectors'],exclude=["tests", "examples"]),
10+
packages=find_packages(exclude=["tests", "examples"]),
1111
python_requires='>=3.7', # Python 3.7+ includes sqlite3 in stdlib
1212
install_requires=[
1313
"litellm",

weaver/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def cli(ctx, api_key):
2626
@click.argument("project_name")
2727
@click.argument("project_goal")
2828
@click.pass_context
29-
@click.group()
29+
3030
def cli():
3131
"""python-weaver CLI: orchestrate long-duration LLM workflows."""
3232
pass

0 commit comments

Comments
 (0)