ceki-langchain 0.1.0__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,30 @@
1
+ # Node
2
+ node_modules/
3
+ dist/
4
+ *.tgz
5
+ .npm
6
+ .npmrc
7
+ npm-debug.log*
8
+
9
+ # Python
10
+ __pycache__/
11
+ *.py[cod]
12
+ *$py.class
13
+ *.egg-info/
14
+ build/
15
+ .eggs/
16
+ .pytest_cache/
17
+ .coverage
18
+ .tox/
19
+
20
+ # Env / local
21
+ .env
22
+ .env.*
23
+ .venv/
24
+ venv/
25
+
26
+ # IDE
27
+ .idea/
28
+ .vscode/
29
+ *.swp
30
+ .DS_Store
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Ceki.me
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: ceki-langchain
3
+ Version: 0.1.0
4
+ Summary: Namespace alias for `langchain-ceki` — install the real package.
5
+ Project-URL: homepage, https://ceki.me
6
+ Project-URL: repository, https://github.com/Ceki-me/langchain
7
+ Project-URL: issues, https://github.com/Ceki-me/langchain/issues
8
+ Author: iWedmak
9
+ License: MIT
10
+ License-File: LICENSE
11
+ Keywords: ceki,langchain,wrapper
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Topic :: Software Development :: Libraries
18
+ Requires-Python: >=3.10
19
+ Requires-Dist: langchain-ceki>=0.1.0
20
+ Description-Content-Type: text/markdown
21
+
22
+ # ceki-langchain
23
+
24
+ This is a namespace-reservation alias on PyPI. The real package is
25
+ [`langchain-ceki`](https://pypi.org/project/langchain-ceki/).
26
+
27
+ ```bash
28
+ pip install langchain-ceki
29
+ ```
30
+
31
+ See the [main README](https://github.com/Ceki-me/langchain) for usage.
32
+
33
+ MIT.
@@ -0,0 +1,12 @@
1
+ # ceki-langchain
2
+
3
+ This is a namespace-reservation alias on PyPI. The real package is
4
+ [`langchain-ceki`](https://pypi.org/project/langchain-ceki/).
5
+
6
+ ```bash
7
+ pip install langchain-ceki
8
+ ```
9
+
10
+ See the [main README](https://github.com/Ceki-me/langchain) for usage.
11
+
12
+ MIT.
@@ -0,0 +1,39 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "ceki-langchain"
7
+ version = "0.1.0"
8
+ description = "Namespace alias for `langchain-ceki` — install the real package."
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ authors = [
12
+ { name = "iWedmak" },
13
+ ]
14
+ requires-python = ">=3.10"
15
+ keywords = ["langchain", "ceki", "wrapper"]
16
+ classifiers = [
17
+ "License :: OSI Approved :: MIT License",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3.10",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Topic :: Software Development :: Libraries",
23
+ ]
24
+ dependencies = [
25
+ "langchain-ceki>=0.1.0",
26
+ ]
27
+
28
+ [project.urls]
29
+ homepage = "https://ceki.me"
30
+ repository = "https://github.com/Ceki-me/langchain"
31
+ issues = "https://github.com/Ceki-me/langchain/issues"
32
+
33
+ [tool.hatch.build]
34
+ include = [
35
+ "src/ceki_langchain/**/*.py",
36
+ ]
37
+
38
+ [tool.hatch.build.targets.wheel]
39
+ packages = ["src/ceki_langchain"]
@@ -0,0 +1,8 @@
1
+ """Namespace alias — the real package is ``langchain-ceki``.
2
+
3
+ ``ceki-langchain`` exists so the ``ceki`` org owns the alias on PyPI.
4
+ Every public name re-exported here lives in ``langchain_ceki``; install
5
+ either distribution and you get the same symbols.
6
+ """
7
+ from langchain_ceki import * # noqa: F401,F403
8
+ from langchain_ceki import __version__ # noqa: F401