kling3-pro 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,49 @@
1
+ Metadata-Version: 2.4
2
+ Name: kling3-pro
3
+ Version: 0.1.0
4
+ Summary: Python metadata helper package for https://kling3.pro and Kling 3 Pro website workflows
5
+ Author-email: "kling3.pro" <support@kling3.pro>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://kling3.pro
8
+ Project-URL: Documentation, https://kling3.pro/docs
9
+ Project-URL: Repository, https://github.com/youram470-art/kling3-pro-python
10
+ Project-URL: Issues, https://github.com/youram470-art/kling3-pro-python/issues
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+
14
+ # kling3-pro
15
+
16
+ Python metadata package for [kling3.pro](https://kling3.pro).
17
+
18
+ `kling3-pro` is a lightweight helper for Python tools that need to identify the
19
+ Kling 3 Pro website and its publishing structure. It exposes the homepage,
20
+ content directory, app directory, and source repository as simple Python
21
+ metadata.
22
+
23
+ ## Installation
24
+
25
+ ```bash
26
+ pip install kling3-pro
27
+ ```
28
+
29
+ ## Usage
30
+
31
+ ```python
32
+ from kling3_pro import HOMEPAGE, get_site_info, hello
33
+
34
+ print(hello())
35
+ print(HOMEPAGE)
36
+ print(get_site_info())
37
+ ```
38
+
39
+ ## Site Metadata
40
+
41
+ - Website: https://kling3.pro
42
+ - Local repository: `/Users/mac/Documents/code/kling3-cf`
43
+ - Content path: `content`
44
+ - Next.js app path: `src/app`
45
+ - Source: https://github.com/youram470-art/kling3-pro-python
46
+
47
+ ## License
48
+
49
+ MIT
@@ -0,0 +1,36 @@
1
+ # kling3-pro
2
+
3
+ Python metadata package for [kling3.pro](https://kling3.pro).
4
+
5
+ `kling3-pro` is a lightweight helper for Python tools that need to identify the
6
+ Kling 3 Pro website and its publishing structure. It exposes the homepage,
7
+ content directory, app directory, and source repository as simple Python
8
+ metadata.
9
+
10
+ ## Installation
11
+
12
+ ```bash
13
+ pip install kling3-pro
14
+ ```
15
+
16
+ ## Usage
17
+
18
+ ```python
19
+ from kling3_pro import HOMEPAGE, get_site_info, hello
20
+
21
+ print(hello())
22
+ print(HOMEPAGE)
23
+ print(get_site_info())
24
+ ```
25
+
26
+ ## Site Metadata
27
+
28
+ - Website: https://kling3.pro
29
+ - Local repository: `/Users/mac/Documents/code/kling3-cf`
30
+ - Content path: `content`
31
+ - Next.js app path: `src/app`
32
+ - Source: https://github.com/youram470-art/kling3-pro-python
33
+
34
+ ## License
35
+
36
+ MIT
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "kling3-pro"
7
+ version = "0.1.0"
8
+ description = "Python metadata helper package for https://kling3.pro and Kling 3 Pro website workflows"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = "MIT"
12
+ authors = [{ name = "kling3.pro", email = "support@kling3.pro" }]
13
+
14
+ [project.urls]
15
+ Homepage = "https://kling3.pro"
16
+ Documentation = "https://kling3.pro/docs"
17
+ Repository = "https://github.com/youram470-art/kling3-pro-python"
18
+ Issues = "https://github.com/youram470-art/kling3-pro-python/issues"
19
+
20
+ [tool.setuptools.packages.find]
21
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,24 @@
1
+ HOMEPAGE = "https://kling3.pro"
2
+ DOCUMENTATION = "https://kling3.pro/docs"
3
+ PACKAGE = "kling3-pro"
4
+ REPOSITORY = "https://github.com/youram470-art/kling3-pro-python"
5
+ LOCAL_REPOSITORY = "/Users/mac/Documents/code/kling3-cf"
6
+ CONTENT_PATH = "content"
7
+ APP_PATH = "src/app"
8
+
9
+
10
+ def hello() -> str:
11
+ return "hello from kling3.pro"
12
+
13
+
14
+ def get_site_info() -> dict:
15
+ return {
16
+ "name": "kling3.pro",
17
+ "homepage": HOMEPAGE,
18
+ "documentation": DOCUMENTATION,
19
+ "package": PACKAGE,
20
+ "repository": REPOSITORY,
21
+ "local_repository": LOCAL_REPOSITORY,
22
+ "content_path": CONTENT_PATH,
23
+ "app_path": APP_PATH,
24
+ }
@@ -0,0 +1,49 @@
1
+ Metadata-Version: 2.4
2
+ Name: kling3-pro
3
+ Version: 0.1.0
4
+ Summary: Python metadata helper package for https://kling3.pro and Kling 3 Pro website workflows
5
+ Author-email: "kling3.pro" <support@kling3.pro>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://kling3.pro
8
+ Project-URL: Documentation, https://kling3.pro/docs
9
+ Project-URL: Repository, https://github.com/youram470-art/kling3-pro-python
10
+ Project-URL: Issues, https://github.com/youram470-art/kling3-pro-python/issues
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+
14
+ # kling3-pro
15
+
16
+ Python metadata package for [kling3.pro](https://kling3.pro).
17
+
18
+ `kling3-pro` is a lightweight helper for Python tools that need to identify the
19
+ Kling 3 Pro website and its publishing structure. It exposes the homepage,
20
+ content directory, app directory, and source repository as simple Python
21
+ metadata.
22
+
23
+ ## Installation
24
+
25
+ ```bash
26
+ pip install kling3-pro
27
+ ```
28
+
29
+ ## Usage
30
+
31
+ ```python
32
+ from kling3_pro import HOMEPAGE, get_site_info, hello
33
+
34
+ print(hello())
35
+ print(HOMEPAGE)
36
+ print(get_site_info())
37
+ ```
38
+
39
+ ## Site Metadata
40
+
41
+ - Website: https://kling3.pro
42
+ - Local repository: `/Users/mac/Documents/code/kling3-cf`
43
+ - Content path: `content`
44
+ - Next.js app path: `src/app`
45
+ - Source: https://github.com/youram470-art/kling3-pro-python
46
+
47
+ ## License
48
+
49
+ MIT
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/kling3_pro/__init__.py
4
+ src/kling3_pro.egg-info/PKG-INFO
5
+ src/kling3_pro.egg-info/SOURCES.txt
6
+ src/kling3_pro.egg-info/dependency_links.txt
7
+ src/kling3_pro.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ kling3_pro