opentdf 999.9.9__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.
- opentdf-999.9.9/PKG-INFO +16 -0
- opentdf-999.9.9/README.md +11 -0
- opentdf-999.9.9/opentdf.egg-info/PKG-INFO +16 -0
- opentdf-999.9.9/opentdf.egg-info/SOURCES.txt +7 -0
- opentdf-999.9.9/opentdf.egg-info/dependency_links.txt +1 -0
- opentdf-999.9.9/opentdf.egg-info/top_level.txt +1 -0
- opentdf-999.9.9/pyproject.toml +10 -0
- opentdf-999.9.9/setup.cfg +4 -0
- opentdf-999.9.9/setup.py +16 -0
opentdf-999.9.9/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: opentdf
|
|
3
|
+
Version: 999.9.9
|
|
4
|
+
Description-Content-Type: text/markdown
|
|
5
|
+
|
|
6
|
+
## Description
|
|
7
|
+
|
|
8
|
+
This is a stub package intended to mitigate the risks of dependency confusion.
|
|
9
|
+
It reclaims a once-popular package name that the original author has since removed.
|
|
10
|
+
|
|
11
|
+
You will encounter this public package if your application depends on a package that was previously removed.
|
|
12
|
+
|
|
13
|
+
Read more about [Dependency Confusion](https://protsenko.dev/dependency-confusion).
|
|
14
|
+
|
|
15
|
+
## Contact me
|
|
16
|
+
- If you're developer of an original library and want to re-publish your own original package — contact me: `security@protsenko.dev`
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
## Description
|
|
2
|
+
|
|
3
|
+
This is a stub package intended to mitigate the risks of dependency confusion.
|
|
4
|
+
It reclaims a once-popular package name that the original author has since removed.
|
|
5
|
+
|
|
6
|
+
You will encounter this public package if your application depends on a package that was previously removed.
|
|
7
|
+
|
|
8
|
+
Read more about [Dependency Confusion](https://protsenko.dev/dependency-confusion).
|
|
9
|
+
|
|
10
|
+
## Contact me
|
|
11
|
+
- If you're developer of an original library and want to re-publish your own original package — contact me: `security@protsenko.dev`
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: opentdf
|
|
3
|
+
Version: 999.9.9
|
|
4
|
+
Description-Content-Type: text/markdown
|
|
5
|
+
|
|
6
|
+
## Description
|
|
7
|
+
|
|
8
|
+
This is a stub package intended to mitigate the risks of dependency confusion.
|
|
9
|
+
It reclaims a once-popular package name that the original author has since removed.
|
|
10
|
+
|
|
11
|
+
You will encounter this public package if your application depends on a package that was previously removed.
|
|
12
|
+
|
|
13
|
+
Read more about [Dependency Confusion](https://protsenko.dev/dependency-confusion).
|
|
14
|
+
|
|
15
|
+
## Contact me
|
|
16
|
+
- If you're developer of an original library and want to re-publish your own original package — contact me: `security@protsenko.dev`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
opentdf-999.9.9/setup.py
ADDED
|
@@ -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 reclaims a once-popular package name that the original author has since removed.
|
|
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()
|