hushline 0.1.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.
- hushline-0.1.1/PKG-INFO +74 -0
- hushline-0.1.1/README.md +54 -0
- hushline-0.1.1/pyproject.toml +50 -0
- hushline-0.1.1/setup.cfg +4 -0
- hushline-0.1.1/src/hushline.egg-info/PKG-INFO +74 -0
- hushline-0.1.1/src/hushline.egg-info/SOURCES.txt +8 -0
- hushline-0.1.1/src/hushline.egg-info/dependency_links.txt +1 -0
- hushline-0.1.1/src/hushline.egg-info/entry_points.txt +3 -0
- hushline-0.1.1/src/hushline.egg-info/requires.txt +4 -0
- hushline-0.1.1/src/hushline.egg-info/top_level.txt +1 -0
hushline-0.1.1/PKG-INFO
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hushline
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Python implementation of the Hushline command contract.
|
|
5
|
+
Author-email: Arcane Sapience <protoscience@anulum.li>
|
|
6
|
+
License: AGPL-3.0-or-later
|
|
7
|
+
Project-URL: homepage, https://github.com/anulum/HushLine
|
|
8
|
+
Keywords: hushline,command-output,prompt-automation,privacy
|
|
9
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Provides-Extra: dev
|
|
18
|
+
Requires-Dist: build; extra == "dev"
|
|
19
|
+
Requires-Dist: twine; extra == "dev"
|
|
20
|
+
|
|
21
|
+
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
22
|
+
# Commercial license available
|
|
23
|
+
# © Concepts 1996–2026 Miroslav Šotek. All rights reserved.
|
|
24
|
+
# © Code 2020–2026 Miroslav Šotek. All rights reserved.
|
|
25
|
+
# ORCID: 0009-0009-3560-0851
|
|
26
|
+
# Contact: www.anulum.li | protoscience@anulum.li
|
|
27
|
+
# HUSHLINE — Python core notes
|
|
28
|
+
|
|
29
|
+
# Hushline Python Core
|
|
30
|
+
|
|
31
|
+
This folder contains a publishable Python implementation of the Hushline contract.
|
|
32
|
+
|
|
33
|
+
## Install from PyPI
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
python -m pip install --upgrade hushline
|
|
37
|
+
hushline
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
The package also installs a compatibility script:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
hushline-python-core --help
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Build locally
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
cd cores/core-python
|
|
50
|
+
python -m pip install --upgrade build twine
|
|
51
|
+
python -m build
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Publish
|
|
55
|
+
|
|
56
|
+
From a tag or release workflow, packages are published by the repository workflow
|
|
57
|
+
`publish-python-core`. Configure a repository secret:
|
|
58
|
+
|
|
59
|
+
- `PYPI_API_TOKEN`
|
|
60
|
+
|
|
61
|
+
and then trigger manually or publish with a GitHub release.
|
|
62
|
+
|
|
63
|
+
## Command surface
|
|
64
|
+
|
|
65
|
+
- `hushline mute -- <command> ...`
|
|
66
|
+
- `hushline manifest init [--global|--local]`
|
|
67
|
+
- `hushline manifest show`
|
|
68
|
+
- `hushline permit status`
|
|
69
|
+
- `hushline permit allow [path]`
|
|
70
|
+
- `hushline version`
|
|
71
|
+
|
|
72
|
+
## Implementation
|
|
73
|
+
|
|
74
|
+
`--pipe-errors` controls stderr shaping; `--raw` bypasses the regex filters.
|
hushline-0.1.1/README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
2
|
+
# Commercial license available
|
|
3
|
+
# © Concepts 1996–2026 Miroslav Šotek. All rights reserved.
|
|
4
|
+
# © Code 2020–2026 Miroslav Šotek. All rights reserved.
|
|
5
|
+
# ORCID: 0009-0009-3560-0851
|
|
6
|
+
# Contact: www.anulum.li | protoscience@anulum.li
|
|
7
|
+
# HUSHLINE — Python core notes
|
|
8
|
+
|
|
9
|
+
# Hushline Python Core
|
|
10
|
+
|
|
11
|
+
This folder contains a publishable Python implementation of the Hushline contract.
|
|
12
|
+
|
|
13
|
+
## Install from PyPI
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
python -m pip install --upgrade hushline
|
|
17
|
+
hushline
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
The package also installs a compatibility script:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
hushline-python-core --help
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Build locally
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
cd cores/core-python
|
|
30
|
+
python -m pip install --upgrade build twine
|
|
31
|
+
python -m build
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Publish
|
|
35
|
+
|
|
36
|
+
From a tag or release workflow, packages are published by the repository workflow
|
|
37
|
+
`publish-python-core`. Configure a repository secret:
|
|
38
|
+
|
|
39
|
+
- `PYPI_API_TOKEN`
|
|
40
|
+
|
|
41
|
+
and then trigger manually or publish with a GitHub release.
|
|
42
|
+
|
|
43
|
+
## Command surface
|
|
44
|
+
|
|
45
|
+
- `hushline mute -- <command> ...`
|
|
46
|
+
- `hushline manifest init [--global|--local]`
|
|
47
|
+
- `hushline manifest show`
|
|
48
|
+
- `hushline permit status`
|
|
49
|
+
- `hushline permit allow [path]`
|
|
50
|
+
- `hushline version`
|
|
51
|
+
|
|
52
|
+
## Implementation
|
|
53
|
+
|
|
54
|
+
`--pipe-errors` controls stderr shaping; `--raw` bypasses the regex filters.
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
2
|
+
# Commercial license available
|
|
3
|
+
# © Concepts 1996–2026 Miroslav Šotek. All rights reserved.
|
|
4
|
+
# © Code 2020–2026 Miroslav Šotek. All rights reserved.
|
|
5
|
+
# ORCID: 0009-0009-3560-0851
|
|
6
|
+
# Contact: www.anulum.li | protoscience@anulum.li
|
|
7
|
+
# HUSHLINE — Python core project metadata
|
|
8
|
+
|
|
9
|
+
[build-system]
|
|
10
|
+
requires = ["setuptools>=68.0", "wheel", "build"]
|
|
11
|
+
build-backend = "setuptools.build_meta"
|
|
12
|
+
|
|
13
|
+
[project]
|
|
14
|
+
name = "hushline"
|
|
15
|
+
version = "0.1.1"
|
|
16
|
+
description = "Python implementation of the Hushline command contract."
|
|
17
|
+
readme = "README.md"
|
|
18
|
+
requires-python = ">=3.11"
|
|
19
|
+
license = { text = "AGPL-3.0-or-later" }
|
|
20
|
+
authors = [
|
|
21
|
+
{ name = "Arcane Sapience", email = "protoscience@anulum.li" }
|
|
22
|
+
]
|
|
23
|
+
keywords = ["hushline", "command-output", "prompt-automation", "privacy"]
|
|
24
|
+
classifiers = [
|
|
25
|
+
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
26
|
+
"Operating System :: OS Independent",
|
|
27
|
+
"Programming Language :: Python :: 3",
|
|
28
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
29
|
+
"Programming Language :: Python :: 3.11",
|
|
30
|
+
"Programming Language :: Python :: 3.12",
|
|
31
|
+
]
|
|
32
|
+
dependencies = []
|
|
33
|
+
urls.homepage = "https://github.com/anulum/HushLine"
|
|
34
|
+
|
|
35
|
+
[project.scripts]
|
|
36
|
+
hushline-python-core = "hushline_core.__main__:main"
|
|
37
|
+
hushline = "hushline_core.__main__:main"
|
|
38
|
+
|
|
39
|
+
[project.optional-dependencies]
|
|
40
|
+
dev = [
|
|
41
|
+
"build",
|
|
42
|
+
"twine",
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
[tool.setuptools]
|
|
46
|
+
package-dir = { "" = "src" }
|
|
47
|
+
include-package-data = true
|
|
48
|
+
|
|
49
|
+
[tool.setuptools.packages.find]
|
|
50
|
+
where = ["src"]
|
hushline-0.1.1/setup.cfg
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hushline
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Python implementation of the Hushline command contract.
|
|
5
|
+
Author-email: Arcane Sapience <protoscience@anulum.li>
|
|
6
|
+
License: AGPL-3.0-or-later
|
|
7
|
+
Project-URL: homepage, https://github.com/anulum/HushLine
|
|
8
|
+
Keywords: hushline,command-output,prompt-automation,privacy
|
|
9
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Provides-Extra: dev
|
|
18
|
+
Requires-Dist: build; extra == "dev"
|
|
19
|
+
Requires-Dist: twine; extra == "dev"
|
|
20
|
+
|
|
21
|
+
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
22
|
+
# Commercial license available
|
|
23
|
+
# © Concepts 1996–2026 Miroslav Šotek. All rights reserved.
|
|
24
|
+
# © Code 2020–2026 Miroslav Šotek. All rights reserved.
|
|
25
|
+
# ORCID: 0009-0009-3560-0851
|
|
26
|
+
# Contact: www.anulum.li | protoscience@anulum.li
|
|
27
|
+
# HUSHLINE — Python core notes
|
|
28
|
+
|
|
29
|
+
# Hushline Python Core
|
|
30
|
+
|
|
31
|
+
This folder contains a publishable Python implementation of the Hushline contract.
|
|
32
|
+
|
|
33
|
+
## Install from PyPI
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
python -m pip install --upgrade hushline
|
|
37
|
+
hushline
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
The package also installs a compatibility script:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
hushline-python-core --help
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Build locally
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
cd cores/core-python
|
|
50
|
+
python -m pip install --upgrade build twine
|
|
51
|
+
python -m build
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Publish
|
|
55
|
+
|
|
56
|
+
From a tag or release workflow, packages are published by the repository workflow
|
|
57
|
+
`publish-python-core`. Configure a repository secret:
|
|
58
|
+
|
|
59
|
+
- `PYPI_API_TOKEN`
|
|
60
|
+
|
|
61
|
+
and then trigger manually or publish with a GitHub release.
|
|
62
|
+
|
|
63
|
+
## Command surface
|
|
64
|
+
|
|
65
|
+
- `hushline mute -- <command> ...`
|
|
66
|
+
- `hushline manifest init [--global|--local]`
|
|
67
|
+
- `hushline manifest show`
|
|
68
|
+
- `hushline permit status`
|
|
69
|
+
- `hushline permit allow [path]`
|
|
70
|
+
- `hushline version`
|
|
71
|
+
|
|
72
|
+
## Implementation
|
|
73
|
+
|
|
74
|
+
`--pipe-errors` controls stderr shaping; `--raw` bypasses the regex filters.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|