platform-common 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.
- platform_common-0.0.1/PKG-INFO +17 -0
- platform_common-0.0.1/README.md +6 -0
- platform_common-0.0.1/platform_common/__init__.py +1 -0
- platform_common-0.0.1/platform_common.egg-info/PKG-INFO +17 -0
- platform_common-0.0.1/platform_common.egg-info/SOURCES.txt +7 -0
- platform_common-0.0.1/platform_common.egg-info/dependency_links.txt +1 -0
- platform_common-0.0.1/platform_common.egg-info/top_level.txt +1 -0
- platform_common-0.0.1/pyproject.toml +16 -0
- platform_common-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: platform-common
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved by Blockaid. This package is for internal use only.
|
|
5
|
+
Author-email: Blockaid Security <security@blockaid.io>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Keywords: reserved,internal
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# platform-common
|
|
13
|
+
|
|
14
|
+
**This package is reserved by [Blockaid](https://blockaid.io) and is not intended for public use.**
|
|
15
|
+
|
|
16
|
+
If you are seeing this, this name has been claimed to prevent dependency confusion attacks.
|
|
17
|
+
The actual package is distributed via Blockaid's internal package registry.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# platform-common
|
|
2
|
+
|
|
3
|
+
**This package is reserved by [Blockaid](https://blockaid.io) and is not intended for public use.**
|
|
4
|
+
|
|
5
|
+
If you are seeing this, this name has been claimed to prevent dependency confusion attacks.
|
|
6
|
+
The actual package is distributed via Blockaid's internal package registry.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Reserved package: platform-common. Internal use only."""
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: platform-common
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved by Blockaid. This package is for internal use only.
|
|
5
|
+
Author-email: Blockaid Security <security@blockaid.io>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Keywords: reserved,internal
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# platform-common
|
|
13
|
+
|
|
14
|
+
**This package is reserved by [Blockaid](https://blockaid.io) and is not intended for public use.**
|
|
15
|
+
|
|
16
|
+
If you are seeing this, this name has been claimed to prevent dependency confusion attacks.
|
|
17
|
+
The actual package is distributed via Blockaid's internal package registry.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
platform_common
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "platform-common"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved by Blockaid. This package is for internal use only."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "Proprietary" }
|
|
11
|
+
authors = [{ name = "Blockaid Security", email = "security@blockaid.io" }]
|
|
12
|
+
keywords = ["reserved", "internal"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
]
|