seltz 0.1.0__tar.gz → 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: seltz
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Seltz Python SDK for AI-powered search
5
5
  Author-email: Seltz <support@seltz.ai>
6
6
  Project-URL: Homepage, https://seltz.ai
@@ -11,11 +11,11 @@ Keywords: search,ai,sdk,api
11
11
  Classifier: Development Status :: 4 - Beta
12
12
  Classifier: Intended Audience :: Developers
13
13
  Classifier: Programming Language :: Python :: 3
14
- Classifier: Programming Language :: Python :: 3.8
15
- Classifier: Programming Language :: Python :: 3.9
16
14
  Classifier: Programming Language :: Python :: 3.10
17
15
  Classifier: Programming Language :: Python :: 3.11
18
16
  Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
19
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
20
  Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
21
21
  Requires-Python: >=3.9
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "seltz"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Seltz Python SDK for AI-powered search"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -16,11 +16,11 @@ classifiers = [
16
16
  "Development Status :: 4 - Beta",
17
17
  "Intended Audience :: Developers",
18
18
  "Programming Language :: Python :: 3",
19
- "Programming Language :: Python :: 3.8",
20
- "Programming Language :: Python :: 3.9",
21
19
  "Programming Language :: Python :: 3.10",
22
20
  "Programming Language :: Python :: 3.11",
23
21
  "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: 3.13",
23
+ "Programming Language :: Python :: 3.14",
24
24
  "Topic :: Software Development :: Libraries :: Python Modules",
25
25
  "Topic :: Internet :: WWW/HTTP :: Indexing/Search"
26
26
  ]
@@ -37,14 +37,17 @@ Repository = "https://github.com/seltz-ai/seltz-py"
37
37
 
38
38
  [tool.setuptools.packages.find]
39
39
  where = ["src"]
40
- include = ["seltz*"]
40
+ include = ["seltz", "seltz.*", "seltz_public_api", "seltz_public_api.*"]
41
41
 
42
42
  [tool.setuptools.package-dir]
43
43
  "" = "src"
44
+ "seltz_public_api" = "src/seltz_public_api"
44
45
 
45
46
  [dependency-groups]
46
47
  dev = [
48
+ "build>=1.3.0",
47
49
  "ruff>=0.14.7",
50
+ "twine>=6.2.0",
48
51
  ]
49
52
 
50
53
  [tool.ruff.lint.isort]
@@ -1,13 +1,13 @@
1
1
  """Service layer with centralized protobuf imports for API version management."""
2
2
 
3
3
  # Centralized protobuf imports - update these when API version changes
4
- from ..seltz_public_api.proto.v1.seltz_pb2 import (
4
+ from seltz_public_api.proto.v1.seltz_pb2 import (
5
5
  Document,
6
6
  Includes,
7
7
  SearchRequest,
8
8
  SearchResponse,
9
9
  )
10
- from ..seltz_public_api.proto.v1.seltz_pb2_grpc import SeltzServiceStub
10
+ from seltz_public_api.proto.v1.seltz_pb2_grpc import SeltzServiceStub
11
11
 
12
12
  __all__ = [
13
13
  "SeltzServiceStub",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: seltz
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Seltz Python SDK for AI-powered search
5
5
  Author-email: Seltz <support@seltz.ai>
6
6
  Project-URL: Homepage, https://seltz.ai
@@ -11,11 +11,11 @@ Keywords: search,ai,sdk,api
11
11
  Classifier: Development Status :: 4 - Beta
12
12
  Classifier: Intended Audience :: Developers
13
13
  Classifier: Programming Language :: Python :: 3
14
- Classifier: Programming Language :: Python :: 3.8
15
- Classifier: Programming Language :: Python :: 3.9
16
14
  Classifier: Programming Language :: Python :: 3.10
17
15
  Classifier: Programming Language :: Python :: 3.11
18
16
  Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
19
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
20
  Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
21
21
  Requires-Python: >=3.9
@@ -9,8 +9,8 @@ src/seltz.egg-info/SOURCES.txt
9
9
  src/seltz.egg-info/dependency_links.txt
10
10
  src/seltz.egg-info/requires.txt
11
11
  src/seltz.egg-info/top_level.txt
12
- src/seltz/seltz_public_api/proto/v1/seltz_pb2.py
13
- src/seltz/seltz_public_api/proto/v1/seltz_pb2.pyi
14
- src/seltz/seltz_public_api/proto/v1/seltz_pb2_grpc.py
15
12
  src/seltz/services/__init__.py
16
- src/seltz/services/search_service.py
13
+ src/seltz/services/search_service.py
14
+ src/seltz_public_api/proto/v1/seltz_pb2.py
15
+ src/seltz_public_api/proto/v1/seltz_pb2.pyi
16
+ src/seltz_public_api/proto/v1/seltz_pb2_grpc.py
@@ -0,0 +1,2 @@
1
+ seltz
2
+ seltz_public_api
@@ -1 +0,0 @@
1
- seltz
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes