gridshare-node 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.
- gridshare_node-0.0.1/PKG-INFO +23 -0
- gridshare_node-0.0.1/README.md +12 -0
- gridshare_node-0.0.1/pyproject.toml +19 -0
- gridshare_node-0.0.1/setup.cfg +4 -0
- gridshare_node-0.0.1/src/gridshare_node/__init__.py +15 -0
- gridshare_node-0.0.1/src/gridshare_node.egg-info/PKG-INFO +23 -0
- gridshare_node-0.0.1/src/gridshare_node.egg-info/SOURCES.txt +7 -0
- gridshare_node-0.0.1/src/gridshare_node.egg-info/dependency_links.txt +1 -0
- gridshare_node-0.0.1/src/gridshare_node.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gridshare-node
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name — official GridShare software is not distributed via PyPI. See https://gridshare.in
|
|
5
|
+
Author-email: Quartusbrain Ideas Private Limited <support@gridshare.in>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://gridshare.in
|
|
8
|
+
Keywords: gridshare
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# gridshare-node — reserved name
|
|
13
|
+
|
|
14
|
+
This name is reserved by **Quartusbrain Ideas Private Limited** (GridShare) to
|
|
15
|
+
prevent name-squatting. **It contains no functional code.**
|
|
16
|
+
|
|
17
|
+
GridShare's node agent is **not** installed from PyPI. Install it only from the
|
|
18
|
+
official source:
|
|
19
|
+
|
|
20
|
+
curl -fsSL https://gridshare.in/install.sh | bash
|
|
21
|
+
|
|
22
|
+
Anything on PyPI claiming to be the GridShare agent is not ours.
|
|
23
|
+
Questions: support@gridshare.in · https://gridshare.in
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# gridshare-node — reserved name
|
|
2
|
+
|
|
3
|
+
This name is reserved by **Quartusbrain Ideas Private Limited** (GridShare) to
|
|
4
|
+
prevent name-squatting. **It contains no functional code.**
|
|
5
|
+
|
|
6
|
+
GridShare's node agent is **not** installed from PyPI. Install it only from the
|
|
7
|
+
official source:
|
|
8
|
+
|
|
9
|
+
curl -fsSL https://gridshare.in/install.sh | bash
|
|
10
|
+
|
|
11
|
+
Anything on PyPI claiming to be the GridShare agent is not ours.
|
|
12
|
+
Questions: support@gridshare.in · https://gridshare.in
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "gridshare-node"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved name — official GridShare software is not distributed via PyPI. See https://gridshare.in"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = {text = "Proprietary"}
|
|
12
|
+
authors = [{name = "Quartusbrain Ideas Private Limited", email = "support@gridshare.in"}]
|
|
13
|
+
keywords = ["gridshare"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://gridshare.in"
|
|
17
|
+
|
|
18
|
+
[tool.setuptools.packages.find]
|
|
19
|
+
where = ["src"]
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""Reserved package name held by GridShare (Quartusbrain Ideas Pvt Ltd).
|
|
2
|
+
|
|
3
|
+
Contains no functional code. The GridShare node agent is NOT distributed via
|
|
4
|
+
PyPI — install it only from https://gridshare.in/install.sh
|
|
5
|
+
"""
|
|
6
|
+
__version__ = "0.0.1"
|
|
7
|
+
|
|
8
|
+
_NOTICE = (
|
|
9
|
+
"This PyPI name is a reserved placeholder. GridShare software is not "
|
|
10
|
+
"distributed via PyPI. Install from https://gridshare.in/install.sh"
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def main() -> None:
|
|
15
|
+
print(_NOTICE)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gridshare-node
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name — official GridShare software is not distributed via PyPI. See https://gridshare.in
|
|
5
|
+
Author-email: Quartusbrain Ideas Private Limited <support@gridshare.in>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://gridshare.in
|
|
8
|
+
Keywords: gridshare
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# gridshare-node — reserved name
|
|
13
|
+
|
|
14
|
+
This name is reserved by **Quartusbrain Ideas Private Limited** (GridShare) to
|
|
15
|
+
prevent name-squatting. **It contains no functional code.**
|
|
16
|
+
|
|
17
|
+
GridShare's node agent is **not** installed from PyPI. Install it only from the
|
|
18
|
+
official source:
|
|
19
|
+
|
|
20
|
+
curl -fsSL https://gridshare.in/install.sh | bash
|
|
21
|
+
|
|
22
|
+
Anything on PyPI claiming to be the GridShare agent is not ours.
|
|
23
|
+
Questions: support@gridshare.in · https://gridshare.in
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gridshare_node
|