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 +14 -0
- golynx-0.0.1/README.md +4 -0
- golynx-0.0.1/golynx.egg-info/PKG-INFO +14 -0
- golynx-0.0.1/golynx.egg-info/SOURCES.txt +7 -0
- golynx-0.0.1/golynx.egg-info/dependency_links.txt +1 -0
- golynx-0.0.1/golynx.egg-info/top_level.txt +1 -0
- golynx-0.0.1/golynx_placeholder/__init__.py +8 -0
- golynx-0.0.1/pyproject.toml +18 -0
- golynx-0.0.1/setup.cfg +4 -0
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,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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
golynx_placeholder
|
|
@@ -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