drak-ops 0.0.0__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.
- drak_ops-0.0.0/PKG-INFO +61 -0
- drak_ops-0.0.0/README.md +46 -0
- drak_ops-0.0.0/pyproject.toml +29 -0
- drak_ops-0.0.0/setup.cfg +4 -0
- drak_ops-0.0.0/src/drak_ops.egg-info/PKG-INFO +61 -0
- drak_ops-0.0.0/src/drak_ops.egg-info/SOURCES.txt +7 -0
- drak_ops-0.0.0/src/drak_ops.egg-info/dependency_links.txt +1 -0
- drak_ops-0.0.0/src/drak_ops.egg-info/top_level.txt +1 -0
- drak_ops-0.0.0/src/drak_ops_placeholder/__init__.py +25 -0
drak_ops-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: drak-ops
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Name reservation. This is NOT the Drak Marketing drak-ops package; it is a placeholder that prevents the name being registered by someone else.
|
|
5
|
+
Author: Mark Harnett
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://pypi.org/project/drak-ops/
|
|
8
|
+
Keywords: placeholder,name-reservation
|
|
9
|
+
Classifier: Development Status :: 7 - Inactive
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# drak-ops — name reservation
|
|
17
|
+
|
|
18
|
+
**This is not a functional package.** It exists only to hold the PyPI name
|
|
19
|
+
`drak-ops` so that nobody else can register it.
|
|
20
|
+
|
|
21
|
+
The real `drak-ops` is a private package belonging to Drak Marketing. It is
|
|
22
|
+
never installed from PyPI — always by direct URL:
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
drak-ops[google] @ git+https://github.com/mharnett/drak-ops.git
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Why this exists
|
|
29
|
+
|
|
30
|
+
A private package name that is *not* claimed on the public index is a
|
|
31
|
+
dependency-confusion vector. If anyone ever writes `pip install drak-ops`
|
|
32
|
+
without the URL — in a Dockerfile, a CI step, a README, or by hand — pip
|
|
33
|
+
resolves it against PyPI and installs whatever is published there. Registering
|
|
34
|
+
the name ourselves means that path leads to this inert placeholder instead of
|
|
35
|
+
to a stranger's code.
|
|
36
|
+
|
|
37
|
+
The name became publicly discoverable through an open-source MCP package that
|
|
38
|
+
referenced it, which is what prompted the reservation.
|
|
39
|
+
|
|
40
|
+
## What it deliberately does not do
|
|
41
|
+
|
|
42
|
+
It ships a module named `drak_ops_placeholder`, **not** `drak_ops`. A
|
|
43
|
+
placeholder that provided a real-looking `drak_ops` package would shadow the
|
|
44
|
+
private one if both ever landed in the same environment — turning a defensive
|
|
45
|
+
measure into the outage it was meant to prevent. Importing anything from it
|
|
46
|
+
raises with the correct install line.
|
|
47
|
+
|
|
48
|
+
## Maintaining it
|
|
49
|
+
|
|
50
|
+
Nothing to do. It never needs a new release. If it somehow must be rebuilt:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
python3 -m venv /tmp/venv && /tmp/venv/bin/pip install -q build twine
|
|
54
|
+
/tmp/venv/bin/python -m build
|
|
55
|
+
/tmp/venv/bin/twine check dist/*
|
|
56
|
+
/tmp/venv/bin/twine upload dist/*
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Note `drak-ops`, `drak_ops` and `Drak.Ops` all normalise to the same PyPI
|
|
60
|
+
project (PEP 503), so this single registration covers them. `drakops` — no
|
|
61
|
+
separator — is a *different* name and is not covered.
|
drak_ops-0.0.0/README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# drak-ops — name reservation
|
|
2
|
+
|
|
3
|
+
**This is not a functional package.** It exists only to hold the PyPI name
|
|
4
|
+
`drak-ops` so that nobody else can register it.
|
|
5
|
+
|
|
6
|
+
The real `drak-ops` is a private package belonging to Drak Marketing. It is
|
|
7
|
+
never installed from PyPI — always by direct URL:
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
drak-ops[google] @ git+https://github.com/mharnett/drak-ops.git
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Why this exists
|
|
14
|
+
|
|
15
|
+
A private package name that is *not* claimed on the public index is a
|
|
16
|
+
dependency-confusion vector. If anyone ever writes `pip install drak-ops`
|
|
17
|
+
without the URL — in a Dockerfile, a CI step, a README, or by hand — pip
|
|
18
|
+
resolves it against PyPI and installs whatever is published there. Registering
|
|
19
|
+
the name ourselves means that path leads to this inert placeholder instead of
|
|
20
|
+
to a stranger's code.
|
|
21
|
+
|
|
22
|
+
The name became publicly discoverable through an open-source MCP package that
|
|
23
|
+
referenced it, which is what prompted the reservation.
|
|
24
|
+
|
|
25
|
+
## What it deliberately does not do
|
|
26
|
+
|
|
27
|
+
It ships a module named `drak_ops_placeholder`, **not** `drak_ops`. A
|
|
28
|
+
placeholder that provided a real-looking `drak_ops` package would shadow the
|
|
29
|
+
private one if both ever landed in the same environment — turning a defensive
|
|
30
|
+
measure into the outage it was meant to prevent. Importing anything from it
|
|
31
|
+
raises with the correct install line.
|
|
32
|
+
|
|
33
|
+
## Maintaining it
|
|
34
|
+
|
|
35
|
+
Nothing to do. It never needs a new release. If it somehow must be rebuilt:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
python3 -m venv /tmp/venv && /tmp/venv/bin/pip install -q build twine
|
|
39
|
+
/tmp/venv/bin/python -m build
|
|
40
|
+
/tmp/venv/bin/twine check dist/*
|
|
41
|
+
/tmp/venv/bin/twine upload dist/*
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Note `drak-ops`, `drak_ops` and `Drak.Ops` all normalise to the same PyPI
|
|
45
|
+
project (PEP 503), so this single registration covers them. `drakops` — no
|
|
46
|
+
separator — is a *different* name and is not covered.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "drak-ops"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Name reservation. This is NOT the Drak Marketing drak-ops package; it is a placeholder that prevents the name being registered by someone else."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Mark Harnett" }]
|
|
13
|
+
keywords = ["placeholder", "name-reservation"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 7 - Inactive",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://pypi.org/project/drak-ops/"
|
|
23
|
+
|
|
24
|
+
# Ships ONE module, deliberately named drak_ops_placeholder — never drak_ops.
|
|
25
|
+
# A placeholder that provided a `drak_ops` package would SHADOW the real
|
|
26
|
+
# private one if it ever landed in the same environment, turning a defensive
|
|
27
|
+
# measure into the outage it exists to prevent.
|
|
28
|
+
[tool.setuptools.packages.find]
|
|
29
|
+
where = ["src"]
|
drak_ops-0.0.0/setup.cfg
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: drak-ops
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Name reservation. This is NOT the Drak Marketing drak-ops package; it is a placeholder that prevents the name being registered by someone else.
|
|
5
|
+
Author: Mark Harnett
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://pypi.org/project/drak-ops/
|
|
8
|
+
Keywords: placeholder,name-reservation
|
|
9
|
+
Classifier: Development Status :: 7 - Inactive
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# drak-ops — name reservation
|
|
17
|
+
|
|
18
|
+
**This is not a functional package.** It exists only to hold the PyPI name
|
|
19
|
+
`drak-ops` so that nobody else can register it.
|
|
20
|
+
|
|
21
|
+
The real `drak-ops` is a private package belonging to Drak Marketing. It is
|
|
22
|
+
never installed from PyPI — always by direct URL:
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
drak-ops[google] @ git+https://github.com/mharnett/drak-ops.git
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Why this exists
|
|
29
|
+
|
|
30
|
+
A private package name that is *not* claimed on the public index is a
|
|
31
|
+
dependency-confusion vector. If anyone ever writes `pip install drak-ops`
|
|
32
|
+
without the URL — in a Dockerfile, a CI step, a README, or by hand — pip
|
|
33
|
+
resolves it against PyPI and installs whatever is published there. Registering
|
|
34
|
+
the name ourselves means that path leads to this inert placeholder instead of
|
|
35
|
+
to a stranger's code.
|
|
36
|
+
|
|
37
|
+
The name became publicly discoverable through an open-source MCP package that
|
|
38
|
+
referenced it, which is what prompted the reservation.
|
|
39
|
+
|
|
40
|
+
## What it deliberately does not do
|
|
41
|
+
|
|
42
|
+
It ships a module named `drak_ops_placeholder`, **not** `drak_ops`. A
|
|
43
|
+
placeholder that provided a real-looking `drak_ops` package would shadow the
|
|
44
|
+
private one if both ever landed in the same environment — turning a defensive
|
|
45
|
+
measure into the outage it was meant to prevent. Importing anything from it
|
|
46
|
+
raises with the correct install line.
|
|
47
|
+
|
|
48
|
+
## Maintaining it
|
|
49
|
+
|
|
50
|
+
Nothing to do. It never needs a new release. If it somehow must be rebuilt:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
python3 -m venv /tmp/venv && /tmp/venv/bin/pip install -q build twine
|
|
54
|
+
/tmp/venv/bin/python -m build
|
|
55
|
+
/tmp/venv/bin/twine check dist/*
|
|
56
|
+
/tmp/venv/bin/twine upload dist/*
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Note `drak-ops`, `drak_ops` and `Drak.Ops` all normalise to the same PyPI
|
|
60
|
+
project (PEP 503), so this single registration covers them. `drakops` — no
|
|
61
|
+
separator — is a *different* name and is not covered.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
drak_ops_placeholder
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"""Placeholder module for the reserved PyPI name ``drak-ops``.
|
|
2
|
+
|
|
3
|
+
If you are reading this because you imported it, something resolved the
|
|
4
|
+
public PyPI package instead of the real, private one. That is exactly the
|
|
5
|
+
mistake this package exists to make loud rather than silent.
|
|
6
|
+
|
|
7
|
+
The real package is private and is always installed by direct URL::
|
|
8
|
+
|
|
9
|
+
drak-ops[google] @ git+https://github.com/mharnett/drak-ops.git
|
|
10
|
+
|
|
11
|
+
Note this module is NOT named ``drak_ops``. It cannot shadow the real
|
|
12
|
+
package; it only occupies the distribution name on the index.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
__version__ = "0.0.0"
|
|
16
|
+
|
|
17
|
+
REAL_INSTALL = "drak-ops[google] @ git+https://github.com/mharnett/drak-ops.git"
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def __getattr__(name: str):
|
|
21
|
+
raise RuntimeError(
|
|
22
|
+
"drak-ops from PyPI is a name-reservation placeholder, not the real "
|
|
23
|
+
"package. The real one is private and must be installed by direct "
|
|
24
|
+
f"URL:\n {REAL_INSTALL}"
|
|
25
|
+
)
|