gridshare-node 0.0.1__tar.gz → 0.0.2__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 → gridshare_node-0.0.2}/PKG-INFO +7 -4
- gridshare_node-0.0.2/README.md +15 -0
- {gridshare_node-0.0.1 → gridshare_node-0.0.2}/pyproject.toml +1 -1
- {gridshare_node-0.0.1 → gridshare_node-0.0.2}/src/gridshare_node/__init__.py +3 -3
- {gridshare_node-0.0.1 → gridshare_node-0.0.2}/src/gridshare_node.egg-info/PKG-INFO +7 -4
- gridshare_node-0.0.1/README.md +0 -12
- {gridshare_node-0.0.1 → gridshare_node-0.0.2}/setup.cfg +0 -0
- {gridshare_node-0.0.1 → gridshare_node-0.0.2}/src/gridshare_node.egg-info/SOURCES.txt +0 -0
- {gridshare_node-0.0.1 → gridshare_node-0.0.2}/src/gridshare_node.egg-info/dependency_links.txt +0 -0
- {gridshare_node-0.0.1 → gridshare_node-0.0.2}/src/gridshare_node.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gridshare-node
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: Reserved name — official GridShare software is not distributed via PyPI. See https://gridshare.in
|
|
5
5
|
Author-email: Quartusbrain Ideas Private Limited <support@gridshare.in>
|
|
6
6
|
License: Proprietary
|
|
@@ -14,10 +14,13 @@ Description-Content-Type: text/markdown
|
|
|
14
14
|
This name is reserved by **Quartusbrain Ideas Private Limited** (GridShare) to
|
|
15
15
|
prevent name-squatting. **It contains no functional code.**
|
|
16
16
|
|
|
17
|
-
GridShare
|
|
18
|
-
official source:
|
|
17
|
+
GridShare software is **not** installed from PyPI. Official installers:
|
|
19
18
|
|
|
20
|
-
curl -fsSL https://gridshare.in/install.sh | bash
|
|
19
|
+
curl -fsSL https://gridshare.in/dl/install-linux.sh | bash # Linux
|
|
20
|
+
curl -fsSL https://gridshare.in/dl/install-mac.sh | bash # macOS
|
|
21
|
+
irm https://gridshare.in/dl/install.ps1 | iex # Windows (PowerShell)
|
|
22
|
+
|
|
23
|
+
Provider signup: https://gridshare.in/provider · Business enquiries: support@gridshare.in
|
|
21
24
|
|
|
22
25
|
Anything on PyPI claiming to be the GridShare agent is not ours.
|
|
23
26
|
Questions: support@gridshare.in · https://gridshare.in
|
|
@@ -0,0 +1,15 @@
|
|
|
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 software is **not** installed from PyPI. Official installers:
|
|
7
|
+
|
|
8
|
+
curl -fsSL https://gridshare.in/dl/install-linux.sh | bash # Linux
|
|
9
|
+
curl -fsSL https://gridshare.in/dl/install-mac.sh | bash # macOS
|
|
10
|
+
irm https://gridshare.in/dl/install.ps1 | iex # Windows (PowerShell)
|
|
11
|
+
|
|
12
|
+
Provider signup: https://gridshare.in/provider · Business enquiries: support@gridshare.in
|
|
13
|
+
|
|
14
|
+
Anything on PyPI claiming to be the GridShare agent is not ours.
|
|
15
|
+
Questions: support@gridshare.in · https://gridshare.in
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "gridshare-node"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.2"
|
|
8
8
|
description = "Reserved name — official GridShare software is not distributed via PyPI. See https://gridshare.in"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"""Reserved package name held by GridShare (Quartusbrain Ideas Pvt Ltd).
|
|
2
2
|
|
|
3
3
|
Contains no functional code. The GridShare node agent is NOT distributed via
|
|
4
|
-
PyPI — install it only from https://gridshare.in/install.sh
|
|
4
|
+
PyPI — install it only from https://gridshare.in/dl/install-linux.sh
|
|
5
5
|
"""
|
|
6
|
-
__version__ = "0.0.
|
|
6
|
+
__version__ = "0.0.2"
|
|
7
7
|
|
|
8
8
|
_NOTICE = (
|
|
9
9
|
"This PyPI name is a reserved placeholder. GridShare software is not "
|
|
10
|
-
"distributed via PyPI. Install from https://gridshare.in/install.sh"
|
|
10
|
+
"distributed via PyPI. Install from https://gridshare.in/dl/install-linux.sh"
|
|
11
11
|
)
|
|
12
12
|
|
|
13
13
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gridshare-node
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: Reserved name — official GridShare software is not distributed via PyPI. See https://gridshare.in
|
|
5
5
|
Author-email: Quartusbrain Ideas Private Limited <support@gridshare.in>
|
|
6
6
|
License: Proprietary
|
|
@@ -14,10 +14,13 @@ Description-Content-Type: text/markdown
|
|
|
14
14
|
This name is reserved by **Quartusbrain Ideas Private Limited** (GridShare) to
|
|
15
15
|
prevent name-squatting. **It contains no functional code.**
|
|
16
16
|
|
|
17
|
-
GridShare
|
|
18
|
-
official source:
|
|
17
|
+
GridShare software is **not** installed from PyPI. Official installers:
|
|
19
18
|
|
|
20
|
-
curl -fsSL https://gridshare.in/install.sh | bash
|
|
19
|
+
curl -fsSL https://gridshare.in/dl/install-linux.sh | bash # Linux
|
|
20
|
+
curl -fsSL https://gridshare.in/dl/install-mac.sh | bash # macOS
|
|
21
|
+
irm https://gridshare.in/dl/install.ps1 | iex # Windows (PowerShell)
|
|
22
|
+
|
|
23
|
+
Provider signup: https://gridshare.in/provider · Business enquiries: support@gridshare.in
|
|
21
24
|
|
|
22
25
|
Anything on PyPI claiming to be the GridShare agent is not ours.
|
|
23
26
|
Questions: support@gridshare.in · https://gridshare.in
|
gridshare_node-0.0.1/README.md
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
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
|
|
File without changes
|
|
File without changes
|
{gridshare_node-0.0.1 → gridshare_node-0.0.2}/src/gridshare_node.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|