Skip to content

Commit ba317a4

Browse files
accept deps from miguel
2 parents 324277e + a68cd20 commit ba317a4

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

pyproject.toml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ dependencies = [
2424
"playwright>=1.42.1",
2525
"requests>=2.31.0",
2626
"browserbase>=1.4.0",
27-
"anthropic>=0.52.2",
27+
"rich>=14.0.0",
2828
"openai>=1.83.0",
29-
"litellm>=1.72.0"
29+
"anthropic>=0.51.0",
30+
"litellm>=1.72.0",
3031
]
3132

3233
[project.optional-dependencies]
@@ -39,15 +40,18 @@ dev = [
3940
"isort>=5.12.0",
4041
"mypy>=1.3.0",
4142
"ruff",
42-
"rich", # Useful for development/debugging
4343
]
4444

4545
[project.urls]
4646
Homepage = "https://github.com/browserbase/stagehand-python"
4747
Repository = "https://github.com/browserbase/stagehand-python"
4848

4949
[tool.setuptools]
50-
packages = ["stagehand"]
50+
# Omit explicit package list so we can use the nested `.packages.find` table below.
51+
52+
[tool.setuptools.packages.find]
53+
where = ["."]
54+
include = ["stagehand*"]
5155

5256
[tool.setuptools.package-data]
5357
stagehand = ["domScripts.js"]

0 commit comments

Comments
 (0)