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