king-ai 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.
king_ai-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Maria Resources
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.
king_ai-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,47 @@
1
+ Metadata-Version: 2.4
2
+ Name: king-ai
3
+ Version: 0.1.0
4
+ Summary: Public links for King AI video and image creation tools.
5
+ Author: Maria Resources
6
+ License: MIT
7
+ Project-URL: King AI, https://king-ai.net/
8
+ Project-URL: AI video generator, https://king-ai.net/ai/image
9
+ Project-URL: Kling Motion Control, https://king-ai.net/kling-motion-control
10
+ Project-URL: King AI video generator, https://king-ai.net/videoframeai
11
+ Keywords: king ai,ai video generator,image to video,motion control
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3 :: Only
17
+ Requires-Python: >=3.9
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Dynamic: license-file
21
+
22
+ # King AI Resources
23
+
24
+ This lightweight metadata package exposes public entry points for the
25
+ King AI website and its documented tools.
26
+
27
+ ## Public links
28
+
29
+ - [King AI](https://king-ai.net/)
30
+ - [AI video generator](https://king-ai.net/ai/image)
31
+ - [Kling Motion Control](https://king-ai.net/kling-motion-control)
32
+ - [King AI video generator](https://king-ai.net/videoframeai)
33
+
34
+ ## Python helper
35
+
36
+ ```python
37
+ from king_ai import get_info
38
+
39
+ info = get_info()
40
+ ```
41
+
42
+ `get_info()` returns the public homepage and feature-link inventory. It does not
43
+ perform network requests, collect data, or provide an SDK for the linked service.
44
+
45
+ ## License
46
+
47
+ MIT
@@ -0,0 +1,26 @@
1
+ # King AI Resources
2
+
3
+ This lightweight metadata package exposes public entry points for the
4
+ King AI website and its documented tools.
5
+
6
+ ## Public links
7
+
8
+ - [King AI](https://king-ai.net/)
9
+ - [AI video generator](https://king-ai.net/ai/image)
10
+ - [Kling Motion Control](https://king-ai.net/kling-motion-control)
11
+ - [King AI video generator](https://king-ai.net/videoframeai)
12
+
13
+ ## Python helper
14
+
15
+ ```python
16
+ from king_ai import get_info
17
+
18
+ info = get_info()
19
+ ```
20
+
21
+ `get_info()` returns the public homepage and feature-link inventory. It does not
22
+ perform network requests, collect data, or provide an SDK for the linked service.
23
+
24
+ ## License
25
+
26
+ MIT
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "king-ai"
7
+ version = "0.1.0"
8
+ description = "Public links for King AI video and image creation tools."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = {text = "MIT"}
12
+ authors = [{name = "Maria Resources"}]
13
+ keywords = ["king ai", "ai video generator", "image to video", "motion control"]
14
+ classifiers = [
15
+ "Development Status :: 3 - Alpha",
16
+ "Intended Audience :: Developers",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3 :: Only",
20
+ ]
21
+
22
+ [project.urls]
23
+ "King AI" = "https://king-ai.net/"
24
+ "AI video generator" = "https://king-ai.net/ai/image"
25
+ "Kling Motion Control" = "https://king-ai.net/kling-motion-control"
26
+ "King AI video generator" = "https://king-ai.net/videoframeai"
27
+
28
+ [tool.setuptools]
29
+ package-dir = {"" = "src"}
30
+
31
+ [tool.setuptools.packages.find]
32
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,18 @@
1
+ """Public link metadata for King AI."""
2
+
3
+ from __future__ import annotations
4
+
5
+ __all__ = ["FEATURES", "HOMEPAGE", "get_info"]
6
+
7
+ HOMEPAGE = "https://king-ai.net/"
8
+ FEATURES = (
9
+ ("King AI", "https://king-ai.net/"),
10
+ ("AI video generator", "https://king-ai.net/ai/image"),
11
+ ("Kling Motion Control", "https://king-ai.net/kling-motion-control"),
12
+ ("King AI video generator", "https://king-ai.net/videoframeai"),
13
+ )
14
+
15
+
16
+ def get_info() -> dict[str, object]:
17
+ """Return the public homepage and feature links without network access."""
18
+ return {"homepage": HOMEPAGE, "features": FEATURES}
@@ -0,0 +1,47 @@
1
+ Metadata-Version: 2.4
2
+ Name: king-ai
3
+ Version: 0.1.0
4
+ Summary: Public links for King AI video and image creation tools.
5
+ Author: Maria Resources
6
+ License: MIT
7
+ Project-URL: King AI, https://king-ai.net/
8
+ Project-URL: AI video generator, https://king-ai.net/ai/image
9
+ Project-URL: Kling Motion Control, https://king-ai.net/kling-motion-control
10
+ Project-URL: King AI video generator, https://king-ai.net/videoframeai
11
+ Keywords: king ai,ai video generator,image to video,motion control
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3 :: Only
17
+ Requires-Python: >=3.9
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Dynamic: license-file
21
+
22
+ # King AI Resources
23
+
24
+ This lightweight metadata package exposes public entry points for the
25
+ King AI website and its documented tools.
26
+
27
+ ## Public links
28
+
29
+ - [King AI](https://king-ai.net/)
30
+ - [AI video generator](https://king-ai.net/ai/image)
31
+ - [Kling Motion Control](https://king-ai.net/kling-motion-control)
32
+ - [King AI video generator](https://king-ai.net/videoframeai)
33
+
34
+ ## Python helper
35
+
36
+ ```python
37
+ from king_ai import get_info
38
+
39
+ info = get_info()
40
+ ```
41
+
42
+ `get_info()` returns the public homepage and feature-link inventory. It does not
43
+ perform network requests, collect data, or provide an SDK for the linked service.
44
+
45
+ ## License
46
+
47
+ MIT
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/king_ai/__init__.py
5
+ src/king_ai.egg-info/PKG-INFO
6
+ src/king_ai.egg-info/SOURCES.txt
7
+ src/king_ai.egg-info/dependency_links.txt
8
+ src/king_ai.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ king_ai