terraform-binary-wheel 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.
- terraform_binary_wheel-0.0.1/PKG-INFO +18 -0
- terraform_binary_wheel-0.0.1/README.md +13 -0
- terraform_binary_wheel-0.0.1/pyproject.toml +10 -0
- terraform_binary_wheel-0.0.1/setup.cfg +4 -0
- terraform_binary_wheel-0.0.1/setup.py +16 -0
- terraform_binary_wheel-0.0.1/terraform_binary_wheel.egg-info/PKG-INFO +18 -0
- terraform_binary_wheel-0.0.1/terraform_binary_wheel.egg-info/SOURCES.txt +7 -0
- terraform_binary_wheel-0.0.1/terraform_binary_wheel.egg-info/dependency_links.txt +1 -0
- terraform_binary_wheel-0.0.1/terraform_binary_wheel.egg-info/top_level.txt +1 -0
@@ -0,0 +1,18 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: terraform-binary-wheel
|
3
|
+
Version: 0.0.1
|
4
|
+
Description-Content-Type: text/markdown
|
5
|
+
|
6
|
+
## What is this?
|
7
|
+
|
8
|
+
This is a stub package intended to mitigate the risks of dependency confusion.
|
9
|
+
It holds a once-popular package name removed by its author (or for other reasons, such as security).
|
10
|
+
|
11
|
+
You might encounter this public package if your application:
|
12
|
+
|
13
|
+
- Depends on a package that has since been deleted.
|
14
|
+
- Contains a typo in the package name.
|
15
|
+
|
16
|
+
This package contains no code — it simply raises an installation-time error to make the problem more noticeable.
|
17
|
+
|
18
|
+
Read more about [Dependency Confusion](https://protsenko.dev/dependency-confusion).
|
@@ -0,0 +1,13 @@
|
|
1
|
+
## What is this?
|
2
|
+
|
3
|
+
This is a stub package intended to mitigate the risks of dependency confusion.
|
4
|
+
It holds a once-popular package name removed by its author (or for other reasons, such as security).
|
5
|
+
|
6
|
+
You might encounter this public package if your application:
|
7
|
+
|
8
|
+
- Depends on a package that has since been deleted.
|
9
|
+
- Contains a typo in the package name.
|
10
|
+
|
11
|
+
This package contains no code — it simply raises an installation-time error to make the problem more noticeable.
|
12
|
+
|
13
|
+
Read more about [Dependency Confusion](https://protsenko.dev/dependency-confusion).
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import sys
|
2
|
+
from distutils.core import setup
|
3
|
+
|
4
|
+
if not any(cmd in sys.argv for cmd in ["sdist", "egg_info"]):
|
5
|
+
raise Exception(
|
6
|
+
"""
|
7
|
+
Installation terminated!
|
8
|
+
This is a stub package intended to mitigate the risks of dependency confusion.
|
9
|
+
It holds a once-popular package name removed by its author (or for other reasons, such as security).
|
10
|
+
This is package not intended to be installed and highlight problems in your setup.
|
11
|
+
|
12
|
+
Read more: https://protsenko.dev/dependency-confusion
|
13
|
+
"""
|
14
|
+
)
|
15
|
+
|
16
|
+
setup()
|
@@ -0,0 +1,18 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: terraform-binary-wheel
|
3
|
+
Version: 0.0.1
|
4
|
+
Description-Content-Type: text/markdown
|
5
|
+
|
6
|
+
## What is this?
|
7
|
+
|
8
|
+
This is a stub package intended to mitigate the risks of dependency confusion.
|
9
|
+
It holds a once-popular package name removed by its author (or for other reasons, such as security).
|
10
|
+
|
11
|
+
You might encounter this public package if your application:
|
12
|
+
|
13
|
+
- Depends on a package that has since been deleted.
|
14
|
+
- Contains a typo in the package name.
|
15
|
+
|
16
|
+
This package contains no code — it simply raises an installation-time error to make the problem more noticeable.
|
17
|
+
|
18
|
+
Read more about [Dependency Confusion](https://protsenko.dev/dependency-confusion).
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|