unique_internal_search 0.0.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.
@@ -0,0 +1,10 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+
9
+ ## [0.0.1] - 2025-08-18
10
+ - Initial release of `internal_search`.
@@ -0,0 +1 @@
1
+ `unique_toolkit` is covered by the [`Unique License v1`](https://github.com/Unique-AG/license/releases/tag/unique-license.v1), unless the/a header or a nested LICENSE specifies another license.
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.1
2
+ Name: unique_internal_search
3
+ Version: 0.0.1
4
+ Summary:
5
+ License: Proprietary
6
+ Author: Martin Fadler
7
+ Author-email: martin.fadler@unique.ch
8
+ Requires-Python: >=3.11,<4.0
9
+ Classifier: License :: Other/Proprietary License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Requires-Dist: pydantic (>=2.8.2,<3.0.0)
14
+ Requires-Dist: pydantic-settings (>=2.10.1,<3.0.0)
15
+ Requires-Dist: pytest (>=8.4.1,<9.0.0)
16
+ Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
17
+ Requires-Dist: typing-extensions (>=4.9.0,<5.0.0)
18
+ Requires-Dist: unique-sdk (>=0.10.0,<0.11.0)
19
+ Requires-Dist: unique-toolkit (>=0.8.18,<0.9.0)
20
+ Description-Content-Type: text/markdown
21
+
22
+ # Internal Search Tool
23
+
24
+ Internal Search Tool to find documents in the Knowledge Base
25
+ # Changelog
26
+
27
+ All notable changes to this project will be documented in this file.
28
+
29
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
30
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
31
+
32
+
33
+ ## [0.0.1] - 2025-08-18
34
+ - Initial release of `internal_search`.
@@ -0,0 +1,3 @@
1
+ # Internal Search Tool
2
+
3
+ Internal Search Tool to find documents in the Knowledge Base
@@ -0,0 +1,44 @@
1
+ [tool.poetry]
2
+ name = "unique_internal_search"
3
+ version = "0.0.1"
4
+ description = ""
5
+ authors = [
6
+ "Martin Fadler <martin.fadler@unique.ch>",
7
+ "Sadique Sheik <sadique@unique.ch>",
8
+ "Fabian Schläpfer <fabian@unique.ch>",
9
+ "Pascal Hauri <pascal@unique.ch>",
10
+ ]
11
+ readme = ["README.md", "CHANGELOG.md"]
12
+ license = "Proprietary"
13
+
14
+ [tool.poetry.dependencies]
15
+ python = "^3.11"
16
+ typing-extensions = "^4.9.0"
17
+ pydantic = "^2.8.2"
18
+ pydantic-settings = "^2.10.1"
19
+ python-dotenv = "^1.0.1"
20
+ pytest = "^8.4.1"
21
+ unique-sdk = "^0.10.0"
22
+ unique-toolkit = "^0.8.18"
23
+
24
+
25
+ [tool.poetry.group.dev.dependencies]
26
+ python = "^3.11"
27
+ typing-extensions = "^4.9.0"
28
+ pydantic = "^2.8.2"
29
+ pydantic-settings = "^2.10.1"
30
+ python-dotenv = "^1.0.1"
31
+ pytest = "^8.4.1"
32
+ unique-sdk = { path = "../../unique_sdk" }
33
+ unique-toolkit = { path = "../../unique_toolkit" }
34
+
35
+
36
+ [build-system]
37
+ requires = ["poetry-core"]
38
+ build-backend = "poetry.core.masonry.api"
39
+
40
+ [tool.ruff]
41
+ target-version = "py311"
42
+
43
+ [tool.ruff.lint]
44
+ extend-select = ["I"]