sec-gemini-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.
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
*
|
|
2
|
+
|
|
3
|
+
!.gitignore
|
|
4
|
+
|
|
5
|
+
# !bin/g
|
|
6
|
+
# !bin/gh
|
|
7
|
+
# !bin/goto
|
|
8
|
+
# !bin/health
|
|
9
|
+
# !bin/irun
|
|
10
|
+
# !bin/is_mosh
|
|
11
|
+
# !bin/jet
|
|
12
|
+
# !bin/jet-has-session
|
|
13
|
+
# !bin/jet-recent
|
|
14
|
+
!bin/jet-restore
|
|
15
|
+
# !bin/meet_compile
|
|
16
|
+
# !bin/meet_compile_lite
|
|
17
|
+
# !bin/space_clean
|
|
18
|
+
# !bin/tmx
|
|
19
|
+
# !bin/tmx2
|
|
20
|
+
# !bin/wtci
|
|
21
|
+
# !bin/wtpr
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: sec-gemini-common
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder: name reserved by Google. This distribution contains no code.
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Classifier: Development Status :: 7 - Inactive
|
|
7
|
+
Classifier: Intended Audience :: Developers
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Topic :: Security
|
|
10
|
+
Requires-Python: >=3.8
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# sec-gemini-common
|
|
14
|
+
|
|
15
|
+
**This is a placeholder. It contains no code and does nothing.**
|
|
16
|
+
|
|
17
|
+
`sec-gemini-common` is an internal package of Google's Sec-Gemini project. It is developed
|
|
18
|
+
and distributed only inside that repository, as a local path dependency, and is
|
|
19
|
+
never published to PyPI.
|
|
20
|
+
|
|
21
|
+
This name is registered here purely as a defensive measure, so that the name
|
|
22
|
+
cannot be claimed by a third party and used to inject code into builds that
|
|
23
|
+
mistakenly resolve it from the public index (a "dependency confusion" attack).
|
|
24
|
+
|
|
25
|
+
If a dependency resolver pulled this distribution in, something is
|
|
26
|
+
misconfigured: the real package should be resolved from its local path. Nothing
|
|
27
|
+
will be importable from this distribution.
|
|
28
|
+
|
|
29
|
+
The public Sec-Gemini Python SDK is [`sec-gemini`](https://pypi.org/project/sec-gemini/).
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# sec-gemini-common
|
|
2
|
+
|
|
3
|
+
**This is a placeholder. It contains no code and does nothing.**
|
|
4
|
+
|
|
5
|
+
`sec-gemini-common` is an internal package of Google's Sec-Gemini project. It is developed
|
|
6
|
+
and distributed only inside that repository, as a local path dependency, and is
|
|
7
|
+
never published to PyPI.
|
|
8
|
+
|
|
9
|
+
This name is registered here purely as a defensive measure, so that the name
|
|
10
|
+
cannot be claimed by a third party and used to inject code into builds that
|
|
11
|
+
mistakenly resolve it from the public index (a "dependency confusion" attack).
|
|
12
|
+
|
|
13
|
+
If a dependency resolver pulled this distribution in, something is
|
|
14
|
+
misconfigured: the real package should be resolved from its local path. Nothing
|
|
15
|
+
will be importable from this distribution.
|
|
16
|
+
|
|
17
|
+
The public Sec-Gemini Python SDK is [`sec-gemini`](https://pypi.org/project/sec-gemini/).
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "sec-gemini-common"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Placeholder: name reserved by Google. This distribution contains no code."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 7 - Inactive",
|
|
14
|
+
"Intended Audience :: Developers",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Topic :: Security",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
# No `packages`, no `force-include`: this builds an empty wheel carrying only
|
|
20
|
+
# metadata, so nothing importable is ever installed under this name.
|
|
21
|
+
[tool.hatch.build.targets.wheel]
|
|
22
|
+
bypass-selection = true
|