byn 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.
- byn-0.0.1/PKG-INFO +30 -0
- byn-0.0.1/README.md +15 -0
- byn-0.0.1/byn/__init__.py +16 -0
- byn-0.0.1/byn.egg-info/PKG-INFO +30 -0
- byn-0.0.1/byn.egg-info/SOURCES.txt +7 -0
- byn-0.0.1/byn.egg-info/dependency_links.txt +1 -0
- byn-0.0.1/byn.egg-info/top_level.txt +1 -0
- byn-0.0.1/pyproject.toml +28 -0
- byn-0.0.1/setup.cfg +4 -0
byn-0.0.1/PKG-INFO
ADDED
|
@@ -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
|
byn-0.0.1/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# byn (name reservation)
|
|
2
|
+
|
|
3
|
+
This PyPI distribution reserves the name **`byn`**. byn is a **Go CLI** — a
|
|
4
|
+
local-first secure secrets vault and credential manager — not a Python
|
|
5
|
+
package. It installs no `byn` command, so it can't shadow the real binary.
|
|
6
|
+
|
|
7
|
+
## Install the real byn
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
go install github.com/sandeepbaynes/byn/cmd/byn@latest
|
|
11
|
+
brew install sandeepbaynes/tap/byn
|
|
12
|
+
curl -fsSL https://raw.githubusercontent.com/sandeepbaynes/byn/main/install.sh | sh
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Homepage: https://github.com/sandeepbaynes/byn · © 2026 Sandeep Baynes · PolyForm Noncommercial 1.0.0
|
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
byn
|
byn-0.0.1/pyproject.toml
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Reservation package for the name `byn` on PyPI. It deliberately defines NO
|
|
2
|
+
# console script, so `pip install byn` can never shadow the real Go binary.
|
|
3
|
+
# Publish: python -m build && twine upload dist/*
|
|
4
|
+
[build-system]
|
|
5
|
+
requires = ["setuptools>=61"]
|
|
6
|
+
build-backend = "setuptools.build_meta"
|
|
7
|
+
|
|
8
|
+
[project]
|
|
9
|
+
name = "byn"
|
|
10
|
+
version = "0.0.1"
|
|
11
|
+
description = "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."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.7"
|
|
14
|
+
authors = [{ name = "Sandeep Baynes" }]
|
|
15
|
+
keywords = ["secrets", "vault", "credentials", "dotenv", "cli", "security"]
|
|
16
|
+
license = "LicenseRef-PolyForm-Noncommercial-1.0.0"
|
|
17
|
+
classifiers = [
|
|
18
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
19
|
+
"Environment :: Console",
|
|
20
|
+
"Intended Audience :: Developers",
|
|
21
|
+
"Topic :: Security",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[project.urls]
|
|
25
|
+
Homepage = "https://github.com/sandeepbaynes/byn"
|
|
26
|
+
|
|
27
|
+
[tool.setuptools]
|
|
28
|
+
packages = ["byn"]
|
byn-0.0.1/setup.cfg
ADDED