Skip to content

Commit da0c9cc

Browse files
committed
cookiecutter dependency
1 parent ae7e46c commit da0c9cc

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
recursive-include agentstack/templates *
2+
include agentstack.json .env .env.example

agentstack/cli/cli.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,13 @@ def ask_stack():
7373
]
7474
)
7575

76+
print("Congrats! Your project is ready to go! Quickly add features now or skip to do it later.\n\n")
77+
7678
use_tools = inquirer.prompt(
7779
[
7880
inquirer.Confirm(
7981
"use_tools",
80-
message="Do you want to use any tools?",
82+
message="Do you want to add tools now?",
8183
)
8284
]
8385
)
@@ -280,8 +282,8 @@ def insert_template(project_details: dict, stack: dict, design: dict):
280282
subprocess.check_output(["git", "add", "."])
281283

282284
os.system("poetry install")
283-
os.system("cls" if os.name == "nt" else "clear")
284-
print("🚀 AgentStack project generated successfully.\nRun `agentstack docs` for help getting started!")
285+
# os.system("cls" if os.name == "nt" else "clear")
286+
print("🚀 AgentStack project generated successfully.\nRun `agentstack docs` for help getting started!\n")
285287

286288

287289
def list_tools():

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agentstack"
7-
version = "0.1.1"
7+
version = "0.1.2-dev2"
88
description = "The fastest way to build robust AI agents"
99
authors = [
1010
{ name="Braelyn Boynton", email="[email protected]" }
@@ -18,11 +18,12 @@ dependencies = [
1818
"inquirer>=3.4.0",
1919
"art>=6.3",
2020
"toml>=0.10.2",
21-
"ruamel.yaml.base>=0.3.2"
21+
"ruamel.yaml.base>=0.3.2",
22+
"cookiecutter==2.6.0"
2223
]
2324

2425
[tool.setuptools.package-data]
25-
agentops = ["templates/**/*"]
26+
agentstack = ["templates/**/*"]
2627

2728
[project.urls]
2829
"Homepage" = "https://your-repo-url"

0 commit comments

Comments
 (0)