Skip to content

Commit 33f4309

Browse files
committed
include extension in release
1 parent d92973c commit 33f4309

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
include sentience/schemas/*.json
2+
recursive-include sentience/extension *.js *.json *.wasm *.d.ts

pyproject.toml

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

55
[project]
66
name = "sentienceapi"
7-
version = "0.90.2"
7+
version = "0.90.3"
88
description = "Python SDK for Sentience AI Agent Browser Automation"
99
readme = "README.md"
1010
requires-python = ">=3.11"
@@ -47,6 +47,9 @@ dev = [
4747
where = ["."]
4848
include = ["sentience*"]
4949

50+
[tool.setuptools.package-data]
51+
sentience = ["schemas/*.json", "extension/**/*"]
52+
5053
[tool.pytest.ini_options]
5154
testpaths = ["tests"]
5255
python_files = ["test_*.py"]

sentience/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
)
6565
from .wait import wait_for
6666

67-
__version__ = "0.90.2"
67+
__version__ = "0.90.3"
6868

6969
__all__ = [
7070
# Core SDK

0 commit comments

Comments
 (0)