drf-apigateway-auth 0.0.2__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.
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.5
2
+ Name: drf-apigateway-auth
3
+ Version: 0.0.2
4
+ Summary: Reserved name placeholder - not a functional package.
5
+ License: MIT
6
+ Classifier: Development Status :: 7 - Inactive
7
+ Classifier: Intended Audience :: Developers
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Topic :: Security
10
+ Description-Content-Type: text/markdown
11
+
12
+ # drf-apigateway-auth
13
+
14
+ **This is not a functional package.** It is a namespace placeholder.
15
+
16
+ A private package called `drf-apigateway-auth` is published to a private package index. This
17
+ placeholder reserves the same name on public PyPI so that it cannot be
18
+ registered by a third party and substituted into a build that resolves against
19
+ both indexes -- a dependency confusion attack.
20
+
21
+ It is permanently version `0.0.2`, contains no code, and raises a
22
+ `RuntimeError` if imported. The private package is always versioned higher, so
23
+ a correctly configured install never selects this one.
24
+
25
+ If you installed this by accident, your index configuration is resolving
26
+ against public PyPI rather than the private index it should be using.
27
+
28
+ ## Claiming this name
29
+
30
+ This name is held as a defensive reservation. It is not abandoned, and it is
31
+ not held for resale or transfer for value.
32
+
33
+ If you have a genuine use for it, that is a reasonable request and we would
34
+ rather hear from you directly than have you go through a formal process:
35
+
36
+ - Email 2d171102879c4f40b42296ac7997936f@proton.me.
37
+ - Or raise a name-retention request with PyPI under **PEP 541**:
38
+ <https://peps.python.org/pep-0541/>, submitted via
39
+ <https://github.com/pypi/support>.
40
+
41
+ PEP 541 is the Python Packaging Authority policy covering package index name
42
+ retention and transfer, including names that are reserved rather than actively
43
+ developed. We will respond to requests made under it.
@@ -0,0 +1,32 @@
1
+ # drf-apigateway-auth
2
+
3
+ **This is not a functional package.** It is a namespace placeholder.
4
+
5
+ A private package called `drf-apigateway-auth` is published to a private package index. This
6
+ placeholder reserves the same name on public PyPI so that it cannot be
7
+ registered by a third party and substituted into a build that resolves against
8
+ both indexes -- a dependency confusion attack.
9
+
10
+ It is permanently version `0.0.2`, contains no code, and raises a
11
+ `RuntimeError` if imported. The private package is always versioned higher, so
12
+ a correctly configured install never selects this one.
13
+
14
+ If you installed this by accident, your index configuration is resolving
15
+ against public PyPI rather than the private index it should be using.
16
+
17
+ ## Claiming this name
18
+
19
+ This name is held as a defensive reservation. It is not abandoned, and it is
20
+ not held for resale or transfer for value.
21
+
22
+ If you have a genuine use for it, that is a reasonable request and we would
23
+ rather hear from you directly than have you go through a formal process:
24
+
25
+ - Email 2d171102879c4f40b42296ac7997936f@proton.me.
26
+ - Or raise a name-retention request with PyPI under **PEP 541**:
27
+ <https://peps.python.org/pep-0541/>, submitted via
28
+ <https://github.com/pypi/support>.
29
+
30
+ PEP 541 is the Python Packaging Authority policy covering package index name
31
+ retention and transfer, including names that are reserved rather than actively
32
+ developed. We will respond to requests made under it.
@@ -0,0 +1,21 @@
1
+ """Namespace placeholder for drf-apigateway-auth - importing this raises."""
2
+
3
+ _MESSAGE = """
4
+ ========================================================================
5
+ drf-apigateway-auth 0.0.2 from public PyPI is a NAMESPACE PLACEHOLDER.
6
+ It is not the real package and contains no functionality.
7
+
8
+ This name is reserved on public PyPI because a private package of the same
9
+ name exists on a private index. The placeholder is permanently 0.0.2, so
10
+ any correctly configured install resolves the real package instead.
11
+
12
+ Seeing this means your install resolved against public PyPI rather than the
13
+ private index it should have used. Check your index configuration
14
+ (--index-url / --extra-index-url, UV_EXTRA_INDEX_URL, PIP_EXTRA_INDEX_URL,
15
+ or [[tool.uv.index]]) and your index credentials, then reinstall.
16
+
17
+ Legitimate claim to this name? Contact 2d171102879c4f40b42296ac7997936f@proton.me
18
+ ========================================================================
19
+ """
20
+
21
+ raise RuntimeError(_MESSAGE)
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "drf-apigateway-auth"
7
+ version = "0.0.2"
8
+ description = "Reserved name placeholder - not a functional package."
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ classifiers = [
12
+ "Development Status :: 7 - Inactive",
13
+ "Intended Audience :: Developers",
14
+ "Programming Language :: Python :: 3",
15
+ "Topic :: Security",
16
+ ]
17
+
18
+ [tool.hatch.build.targets.wheel]
19
+ packages = ["drf_apigateway_auth"]