openbit 0.0.1__py3-none-any.whl
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.dist-info/METADATA +21 -0
- openbit-0.0.1.dist-info/RECORD +5 -0
- openbit-0.0.1.dist-info/WHEEL +5 -0
- openbit-0.0.1.dist-info/top_level.txt +1 -0
- stub.py +8 -0
|
@@ -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,5 @@
|
|
|
1
|
+
stub.py,sha256=MC4YfY-TJ3fe7MoJgHe0yR8RuoCKCflCpUyI4ASShIw,307
|
|
2
|
+
openbit-0.0.1.dist-info/METADATA,sha256=MbFNW45Vt1EJksVpzWnw6gM0o-2clESExYr4wLD9f78,537
|
|
3
|
+
openbit-0.0.1.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
|
|
4
|
+
openbit-0.0.1.dist-info/top_level.txt,sha256=Jc9UxpemljLFlSSG7Bib43Hd3cQivKMJEPF7LDoLox0,5
|
|
5
|
+
openbit-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
stub
|
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
|
+
)
|