golynx 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.
golynx-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: golynx
3
+ Version: 0.0.1
4
+ Summary: LYNX SDK — name-reservation placeholder (real release ships as golynx>=1.0.0)
5
+ Author-email: Synetic AI <david@themainbranch.com>
6
+ License-Expression: LicenseRef-Proprietary
7
+ Project-URL: Homepage, https://golynx.ai
8
+ Requires-Python: >=3.10
9
+ Description-Content-Type: text/markdown
10
+
11
+ # golynx (placeholder)
12
+
13
+ Name-reservation placeholder. Real release ships as `golynx>=1.0.0`.
14
+ See https://golynx.ai
golynx-0.0.1/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # golynx (placeholder)
2
+
3
+ Name-reservation placeholder. Real release ships as `golynx>=1.0.0`.
4
+ See https://golynx.ai
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: golynx
3
+ Version: 0.0.1
4
+ Summary: LYNX SDK — name-reservation placeholder (real release ships as golynx>=1.0.0)
5
+ Author-email: Synetic AI <david@themainbranch.com>
6
+ License-Expression: LicenseRef-Proprietary
7
+ Project-URL: Homepage, https://golynx.ai
8
+ Requires-Python: >=3.10
9
+ Description-Content-Type: text/markdown
10
+
11
+ # golynx (placeholder)
12
+
13
+ Name-reservation placeholder. Real release ships as `golynx>=1.0.0`.
14
+ See https://golynx.ai
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ golynx.egg-info/PKG-INFO
4
+ golynx.egg-info/SOURCES.txt
5
+ golynx.egg-info/dependency_links.txt
6
+ golynx.egg-info/top_level.txt
7
+ golynx_placeholder/__init__.py
@@ -0,0 +1 @@
1
+ golynx_placeholder
@@ -0,0 +1,8 @@
1
+ import warnings
2
+ warnings.warn(
3
+ "You installed golynx 0.0.1 — a name-reservation placeholder. "
4
+ "The real LYNX SDK ships as golynx>=1.0.0. "
5
+ "See https://golynx.ai",
6
+ UserWarning,
7
+ stacklevel=2,
8
+ )
@@ -0,0 +1,18 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "golynx"
7
+ version = "0.0.1"
8
+ description = "LYNX SDK — name-reservation placeholder (real release ships as golynx>=1.0.0)"
9
+ authors = [{name = "Synetic AI", email = "david@themainbranch.com"}]
10
+ requires-python = ">=3.10"
11
+ readme = "README.md"
12
+ license = "LicenseRef-Proprietary"
13
+
14
+ [project.urls]
15
+ Homepage = "https://golynx.ai"
16
+
17
+ [tool.setuptools.packages.find]
18
+ include = ["golynx_placeholder"]
golynx-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+