bitid 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.
- bitid-0.0.1/PKG-INFO +23 -0
- bitid-0.0.1/README.md +12 -0
- bitid-0.0.1/pyproject.toml +19 -0
- bitid-0.0.1/src/bitid_reserved/__init__.py +7 -0
bitid-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: bitid
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved by Beem. The active package is `beem-bitid-sdk` -- install that instead.
|
|
5
|
+
Author-email: Beem <support@useline.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# bitid (reserved)
|
|
13
|
+
|
|
14
|
+
This package name is reserved by Beem and intentionally contains no functionality.
|
|
15
|
+
|
|
16
|
+
The active, maintained SDK for Beem's bitID crypto-wallet backend is published as
|
|
17
|
+
**`beem-bitid-sdk`**:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install beem-bitid-sdk
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
If you were looking for Beem's bitID wallet SDK, install that package instead.
|
bitid-0.0.1/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# bitid (reserved)
|
|
2
|
+
|
|
3
|
+
This package name is reserved by Beem and intentionally contains no functionality.
|
|
4
|
+
|
|
5
|
+
The active, maintained SDK for Beem's bitID crypto-wallet backend is published as
|
|
6
|
+
**`beem-bitid-sdk`**:
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
pip install beem-bitid-sdk
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
If you were looking for Beem's bitID wallet SDK, install that package instead.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "bitid"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved by Beem. The active package is `beem-bitid-sdk` -- install that instead."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Proprietary" }
|
|
12
|
+
authors = [{ name = "Beem", email = "support@useline.com" }]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["src/bitid_reserved"]
|