openbit 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.
openbit-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: openbit
3
+ Version: 0.0.1
4
+ Summary: Name reserved by BIT. The real package is bit-agent - https://osbt.space
5
+ License: Apache-2.0
6
+ Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
8
+
9
+ # reserved: openbit
10
+
11
+ This package name is **reserved by BIT** to prevent name-squatting.
12
+
13
+ BIT itself ships native binaries (not Python); the npm channel is
14
+ [`bit-agent`](https://www.npmjs.com/package/bit-agent):
15
+
16
+ ```bash
17
+ npm install -g bit-agent
18
+ ```
19
+
20
+ - Website: https://osbt.space
21
+ - GitHub: https://github.com/yxpil/bit
@@ -0,0 +1,13 @@
1
+ # reserved: openbit
2
+
3
+ This package name is **reserved by BIT** to prevent name-squatting.
4
+
5
+ BIT itself ships native binaries (not Python); the npm channel is
6
+ [`bit-agent`](https://www.npmjs.com/package/bit-agent):
7
+
8
+ ```bash
9
+ npm install -g bit-agent
10
+ ```
11
+
12
+ - Website: https://osbt.space
13
+ - GitHub: https://github.com/yxpil/bit
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: openbit
3
+ Version: 0.0.1
4
+ Summary: Name reserved by BIT. The real package is bit-agent - https://osbt.space
5
+ License: Apache-2.0
6
+ Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
8
+
9
+ # reserved: openbit
10
+
11
+ This package name is **reserved by BIT** to prevent name-squatting.
12
+
13
+ BIT itself ships native binaries (not Python); the npm channel is
14
+ [`bit-agent`](https://www.npmjs.com/package/bit-agent):
15
+
16
+ ```bash
17
+ npm install -g bit-agent
18
+ ```
19
+
20
+ - Website: https://osbt.space
21
+ - GitHub: https://github.com/yxpil/bit
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ stub.py
4
+ openbit.egg-info/PKG-INFO
5
+ openbit.egg-info/SOURCES.txt
6
+ openbit.egg-info/dependency_links.txt
7
+ openbit.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ stub
@@ -0,0 +1,14 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "openbit"
7
+ version = "0.0.1"
8
+ description = "Name reserved by BIT. The real package is bit-agent - https://osbt.space"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = {text = "Apache-2.0"}
12
+
13
+ [tool.setuptools]
14
+ py-modules = ["stub"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
openbit-0.0.1/stub.py ADDED
@@ -0,0 +1,8 @@
1
+ """Reserved by BIT (https://osbt.space) to prevent name-squatting.
2
+
3
+ The real package is `bit-agent`: https://pypi.org/project/bit-agent/
4
+ """
5
+ raise ImportError(
6
+ "[reserved] This PyPI name is reserved by BIT (https://osbt.space). "
7
+ "The real package is `bit-agent` on npm: npm install -g bit-agent"
8
+ )