shinygen 0.0.1__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,21 @@
1
+ Metadata-Version: 2.5
2
+ Name: shinygen
3
+ Version: 0.0.1
4
+ Summary: Python client for Shiny Gen (early release, API coming soon)
5
+ Project-URL: Homepage, https://shinygen.ai
6
+ Author: Shiny Gen
7
+ Classifier: Development Status :: 1 - Planning
8
+ Classifier: Operating System :: OS Independent
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+
13
+ # shinygen
14
+
15
+ The official Python package for [Shiny Gen](https://shinygen.ai).
16
+
17
+ This is an early release. The client API is in development and will land in an upcoming version.
18
+
19
+ ```
20
+ pip install shinygen
21
+ ```
@@ -0,0 +1,9 @@
1
+ # shinygen
2
+
3
+ The official Python package for [Shiny Gen](https://shinygen.ai).
4
+
5
+ This is an early release. The client API is in development and will land in an upcoming version.
6
+
7
+ ```
8
+ pip install shinygen
9
+ ```
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "shinygen"
7
+ version = "0.0.1"
8
+ description = "Python client for Shiny Gen (early release, API coming soon)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ authors = [{ name = "Shiny Gen" }]
12
+ classifiers = [
13
+ "Development Status :: 1 - Planning",
14
+ "Programming Language :: Python :: 3",
15
+ "Operating System :: OS Independent",
16
+ ]
17
+
18
+ [project.urls]
19
+ Homepage = "https://shinygen.ai"
@@ -0,0 +1,3 @@
1
+ """Python client for Shiny Gen (https://shinygen.ai)."""
2
+
3
+ __version__ = "0.0.1"