tarzh 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.
- tarzh-0.0.1/PKG-INFO +19 -0
- tarzh-0.0.1/README.md +5 -0
- tarzh-0.0.1/pyproject.toml +24 -0
- tarzh-0.0.1/src/tarzh/__init__.py +7 -0
tarzh-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tarzh
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name for tarzhlabs — offensive hardware-security tooling (coming soon).
|
|
5
|
+
Project-URL: Homepage, https://tarzh.com
|
|
6
|
+
Author: tarzhlabs
|
|
7
|
+
License: MIT
|
|
8
|
+
Keywords: hardware,offensive-security,security,tarzh
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Topic :: Security
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# tarzh
|
|
16
|
+
|
|
17
|
+
Reserved package name for **tarzhlabs** — offensive hardware-security tooling.
|
|
18
|
+
|
|
19
|
+
🚧 Project coming soon. → https://tarzh.com
|
tarzh-0.0.1/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tarzh"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved name for tarzhlabs — offensive hardware-security tooling (coming soon)."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "tarzhlabs" }]
|
|
13
|
+
keywords = ["security", "hardware", "offensive-security", "tarzh"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Topic :: Security",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://tarzh.com"
|
|
22
|
+
|
|
23
|
+
[tool.hatch.build.targets.wheel]
|
|
24
|
+
packages = ["src/tarzh"]
|