byn 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.
- byn/__init__.py +16 -0
- byn-0.0.1.dist-info/METADATA +30 -0
- byn-0.0.1.dist-info/RECORD +5 -0
- byn-0.0.1.dist-info/WHEEL +5 -0
- byn-0.0.1.dist-info/top_level.txt +1 -0
byn/__init__.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""byn — name reservation on PyPI.
|
|
2
|
+
|
|
3
|
+
byn is a Go CLI (a local-first secure secrets vault and credential manager),
|
|
4
|
+
not a Python package. This distribution only reserves the name.
|
|
5
|
+
|
|
6
|
+
Install the real byn:
|
|
7
|
+
|
|
8
|
+
go install github.com/sandeepbaynes/byn/cmd/byn@latest
|
|
9
|
+
brew install sandeepbaynes/tap/byn
|
|
10
|
+
curl -fsSL https://raw.githubusercontent.com/sandeepbaynes/byn/main/install.sh | sh
|
|
11
|
+
|
|
12
|
+
Homepage: https://github.com/sandeepbaynes/byn
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
__version__ = "0.0.1"
|
|
16
|
+
HOMEPAGE = "https://github.com/sandeepbaynes/byn"
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: byn
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Name reserved for byn — a local-first secure secrets vault & credential manager (a Go CLI). Install via `go install`, Homebrew, or https://github.com/sandeepbaynes/byn.
|
|
5
|
+
Author: Sandeep Baynes
|
|
6
|
+
License-Expression: LicenseRef-PolyForm-Noncommercial-1.0.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/sandeepbaynes/byn
|
|
8
|
+
Keywords: secrets,vault,credentials,dotenv,cli,security
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: Environment :: Console
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Topic :: Security
|
|
13
|
+
Requires-Python: >=3.7
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# byn (name reservation)
|
|
17
|
+
|
|
18
|
+
This PyPI distribution reserves the name **`byn`**. byn is a **Go CLI** — a
|
|
19
|
+
local-first secure secrets vault and credential manager — not a Python
|
|
20
|
+
package. It installs no `byn` command, so it can't shadow the real binary.
|
|
21
|
+
|
|
22
|
+
## Install the real byn
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
go install github.com/sandeepbaynes/byn/cmd/byn@latest
|
|
26
|
+
brew install sandeepbaynes/tap/byn
|
|
27
|
+
curl -fsSL https://raw.githubusercontent.com/sandeepbaynes/byn/main/install.sh | sh
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Homepage: https://github.com/sandeepbaynes/byn · © 2026 Sandeep Baynes · PolyForm Noncommercial 1.0.0
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
byn/__init__.py,sha256=kkQRJsUUIJ2GEuI8oMKceCqayrEqfkqY_3gWiUyDn0Q,514
|
|
2
|
+
byn-0.0.1.dist-info/METADATA,sha256=4EIqjMaVBKZkWDoeZl77hLbwiRKyR462i67AlLQY-OA,1215
|
|
3
|
+
byn-0.0.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
4
|
+
byn-0.0.1.dist-info/top_level.txt,sha256=9l4_RQRb_6twkQ9u6qBEdOLIqK9dvQpkq_k0p64F_YQ,4
|
|
5
|
+
byn-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
byn
|