tketool 1.3.5__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.
- tketool-1.3.5/PKG-INFO +33 -0
- tketool-1.3.5/README.md +10 -0
- tketool-1.3.5/pyproject.toml +36 -0
- tketool-1.3.5/setup.cfg +4 -0
- tketool-1.3.5/tketool.egg-info/PKG-INFO +33 -0
- tketool-1.3.5/tketool.egg-info/SOURCES.txt +7 -0
- tketool-1.3.5/tketool.egg-info/dependency_links.txt +1 -0
- tketool-1.3.5/tketool.egg-info/requires.txt +9 -0
- tketool-1.3.5/tketool.egg-info/top_level.txt +1 -0
tketool-1.3.5/PKG-INFO
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tketool
|
|
3
|
+
Version: 1.3.5
|
|
4
|
+
Summary: Modular toolkit for OpenAI-compatible models, datasets, storage, Markdown, and pipelines
|
|
5
|
+
Author-email: Ke <jiangke1207@icloud.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://pypi.org/project/tketool/
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
Requires-Dist: tketool.core[all]==1.3.5
|
|
16
|
+
Requires-Dist: tketool.llm==1.3.5
|
|
17
|
+
Requires-Dist: tketool.datasets==1.3.5
|
|
18
|
+
Requires-Dist: tketool.storage==1.3.5
|
|
19
|
+
Requires-Dist: tketool.markdown==1.3.5
|
|
20
|
+
Requires-Dist: tketool.pipeline==1.3.5
|
|
21
|
+
Provides-Extra: test
|
|
22
|
+
Requires-Dist: pytest<9,>=8; extra == "test"
|
|
23
|
+
|
|
24
|
+
# tketool
|
|
25
|
+
|
|
26
|
+
Aggregate installation for the modular tketool packages.
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
pip install tketool
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
For smaller environments, install only the feature needed, such as
|
|
33
|
+
`tketool.llm`, `tketool.storage`, or `tketool.datasets`.
|
tketool-1.3.5/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tketool"
|
|
7
|
+
version = "1.3.5"
|
|
8
|
+
description = "Modular toolkit for OpenAI-compatible models, datasets, storage, Markdown, and pipelines"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [{ name = "Ke", email = "jiangke1207@icloud.com" }]
|
|
13
|
+
dependencies = [
|
|
14
|
+
"tketool.core[all]==1.3.5",
|
|
15
|
+
"tketool.llm==1.3.5",
|
|
16
|
+
"tketool.datasets==1.3.5",
|
|
17
|
+
"tketool.storage==1.3.5",
|
|
18
|
+
"tketool.markdown==1.3.5",
|
|
19
|
+
"tketool.pipeline==1.3.5",
|
|
20
|
+
]
|
|
21
|
+
classifiers = [
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
"Programming Language :: Python :: 3.10",
|
|
24
|
+
"Programming Language :: Python :: 3.11",
|
|
25
|
+
"Programming Language :: Python :: 3.12",
|
|
26
|
+
"Operating System :: OS Independent",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[project.optional-dependencies]
|
|
30
|
+
test = ["pytest>=8,<9"]
|
|
31
|
+
|
|
32
|
+
[project.urls]
|
|
33
|
+
Homepage = "https://pypi.org/project/tketool/"
|
|
34
|
+
|
|
35
|
+
[tool.setuptools]
|
|
36
|
+
packages = []
|
tketool-1.3.5/setup.cfg
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tketool
|
|
3
|
+
Version: 1.3.5
|
|
4
|
+
Summary: Modular toolkit for OpenAI-compatible models, datasets, storage, Markdown, and pipelines
|
|
5
|
+
Author-email: Ke <jiangke1207@icloud.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://pypi.org/project/tketool/
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
Requires-Dist: tketool.core[all]==1.3.5
|
|
16
|
+
Requires-Dist: tketool.llm==1.3.5
|
|
17
|
+
Requires-Dist: tketool.datasets==1.3.5
|
|
18
|
+
Requires-Dist: tketool.storage==1.3.5
|
|
19
|
+
Requires-Dist: tketool.markdown==1.3.5
|
|
20
|
+
Requires-Dist: tketool.pipeline==1.3.5
|
|
21
|
+
Provides-Extra: test
|
|
22
|
+
Requires-Dist: pytest<9,>=8; extra == "test"
|
|
23
|
+
|
|
24
|
+
# tketool
|
|
25
|
+
|
|
26
|
+
Aggregate installation for the modular tketool packages.
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
pip install tketool
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
For smaller environments, install only the feature needed, such as
|
|
33
|
+
`tketool.llm`, `tketool.storage`, or `tketool.datasets`.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|