vishalo 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.
- vishalo-0.1.0/LICENSE +2 -0
- vishalo-0.1.0/PKG-INFO +19 -0
- vishalo-0.1.0/README.md +4 -0
- vishalo-0.1.0/pyproject.toml +17 -0
- vishalo-0.1.0/vishalo/__init__.py +5 -0
vishalo-0.1.0/LICENSE
ADDED
vishalo-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vishalo
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Vishalo - AI-powered visual creation platform
|
|
5
|
+
Project-URL: Homepage, https://vishalo.com
|
|
6
|
+
Author-email: Vishalo Team <contact@vishalo.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Keywords: ai-visual,generative-ai,vishalo,visual-creation
|
|
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
|
+
# Vishalo
|
|
17
|
+
AI-powered visual creation platform.
|
|
18
|
+
## Official Website
|
|
19
|
+
Visit: [https://vishalo.com](https://vishalo.com)
|
vishalo-0.1.0/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "vishalo"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Vishalo - AI-powered visual creation platform"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
authors = [{name = "Vishalo Team", email = "contact@vishalo.com"}]
|
|
12
|
+
keywords = ["vishalo", "ai-visual", "visual-creation", "generative-ai"]
|
|
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://vishalo.com"
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"""Vishalo - AI-powered visual creation platform. Official Website: https://vishalo.com"""
|
|
2
|
+
__version__ = "0.1.0"
|
|
3
|
+
WEBSITE = "https://vishalo.com"
|
|
4
|
+
def get_info(): return {"name": "Vishalo", "version": __version__, "website": WEBSITE}
|
|
5
|
+
def get_platform_url(): return WEBSITE
|