infiniteaudience 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,18 @@
1
+ Metadata-Version: 2.5
2
+ Name: infiniteaudience
3
+ Version: 0.0.1
4
+ Summary: Reserved — the official Infinite Audience SDK is under active development.
5
+ Project-URL: Homepage, https://docs.infiniteaudience.ai
6
+ Project-URL: Repository, https://github.com/no-fait/platform
7
+ License-Expression: MIT
8
+ Classifier: Development Status :: 2 - Pre-Alpha
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+
13
+ # infiniteaudience
14
+
15
+ This package name is reserved for the official Infinite Audience Python SDK, currently
16
+ under active development. There is no functional code here yet.
17
+
18
+ Watch this space, or see https://docs.infiniteaudience.ai for updates.
@@ -0,0 +1,6 @@
1
+ # infiniteaudience
2
+
3
+ This package name is reserved for the official Infinite Audience Python SDK, currently
4
+ under active development. There is no functional code here yet.
5
+
6
+ Watch this space, or see https://docs.infiniteaudience.ai for updates.
@@ -0,0 +1,8 @@
1
+ """infinite_audience — name reservation placeholder (PyPI project: infiniteaudience).
2
+
3
+ The official Infinite Audience Python SDK is under active development and
4
+ not yet published under this name. See https://docs.infiniteaudience.ai
5
+ for updates.
6
+ """
7
+
8
+ __version__ = "0.0.1"
@@ -0,0 +1,22 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "infiniteaudience"
7
+ version = "0.0.1"
8
+ description = "Reserved — the official Infinite Audience SDK is under active development."
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.9"
12
+ classifiers = [
13
+ "Development Status :: 2 - Pre-Alpha",
14
+ "Programming Language :: Python :: 3",
15
+ ]
16
+
17
+ [project.urls]
18
+ Homepage = "https://docs.infiniteaudience.ai"
19
+ Repository = "https://github.com/no-fait/platform"
20
+
21
+ [tool.hatch.build.targets.wheel]
22
+ packages = ["infinite_audience"]