formy3d 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.
formy3d-0.1.0/LICENSE ADDED
@@ -0,0 +1,2 @@
1
+ MIT License
2
+ Copyright (c) 2026 Formy 3D
formy3d-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: formy3d
3
+ Version: 0.1.0
4
+ Summary: Formy 3D - AI 3D model generator
5
+ Project-URL: Homepage, https://formy3d.com
6
+ Author-email: Formy3D Team <contact@formy3d.com>
7
+ License: MIT
8
+ License-File: LICENSE
9
+ Keywords: 3d-model,ai-3d,formy3d,image-to-3d,text-to-3d
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+
16
+ # Formy 3D
17
+ AI 3D model generator.
18
+ ## Official Website
19
+ Visit: [https://formy3d.com](https://formy3d.com)
20
+ ## License
21
+ MIT License
@@ -0,0 +1,6 @@
1
+ # Formy 3D
2
+ AI 3D model generator.
3
+ ## Official Website
4
+ Visit: [https://formy3d.com](https://formy3d.com)
5
+ ## License
6
+ MIT License
@@ -0,0 +1,5 @@
1
+ """Formy 3D - AI 3D model generator. Official Website: https://formy3d.com"""
2
+ __version__ = "0.1.0"
3
+ WEBSITE = "https://formy3d.com"
4
+ def get_info(): return {"name": "Formy 3D", "version": __version__, "website": WEBSITE}
5
+ def get_platform_url(): return WEBSITE
@@ -0,0 +1,17 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "formy3d"
7
+ version = "0.1.0"
8
+ description = "Formy 3D - AI 3D model generator"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ authors = [{name = "Formy3D Team", email = "contact@formy3d.com"}]
12
+ keywords = ["formy3d", "3d-model", "ai-3d", "text-to-3d", "image-to-3d"]
13
+ classifiers = ["Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3"]
14
+ requires-python = ">=3.9"
15
+
16
+ [project.urls]
17
+ Homepage = "https://formy3d.com"