borehole 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.
borehole-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: borehole
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A core sample of any codebase, with the evidence. Pre-release placeholder for the Borehole CLI.
|
|
5
|
+
Project-URL: Homepage, https://borehole.dev
|
|
6
|
+
Project-URL: Source, https://github.com/borehole/cli
|
|
7
|
+
Author-email: Andrew Edmond <nerolabs@gmail.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: code-analysis,due-diligence,git,provenance
|
|
10
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# borehole
|
|
17
|
+
|
|
18
|
+
**Pre-release placeholder.** The CLI is not functional yet.
|
|
19
|
+
|
|
20
|
+
Borehole takes a core sample of a codebase: seven dimensions of technical
|
|
21
|
+
diligence, every finding tied to a commit, a path and a line range — and a
|
|
22
|
+
plain statement of what a repository cannot tell you.
|
|
23
|
+
|
|
24
|
+
The deterministic layer runs locally on git metadata alone. No source code
|
|
25
|
+
leaves the machine.
|
|
26
|
+
|
|
27
|
+
https://borehole.dev
|
borehole-0.0.1/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# borehole
|
|
2
|
+
|
|
3
|
+
**Pre-release placeholder.** The CLI is not functional yet.
|
|
4
|
+
|
|
5
|
+
Borehole takes a core sample of a codebase: seven dimensions of technical
|
|
6
|
+
diligence, every finding tied to a commit, a path and a line range — and a
|
|
7
|
+
plain statement of what a repository cannot tell you.
|
|
8
|
+
|
|
9
|
+
The deterministic layer runs locally on git metadata alone. No source code
|
|
10
|
+
leaves the machine.
|
|
11
|
+
|
|
12
|
+
https://borehole.dev
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "borehole"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "A core sample of any codebase, with the evidence. Pre-release placeholder for the Borehole CLI."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Andrew Edmond", email = "nerolabs@gmail.com" }]
|
|
13
|
+
keywords = ["due-diligence", "code-analysis", "git", "provenance"]
|
|
14
|
+
classifiers = ["Development Status :: 2 - Pre-Alpha", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3"]
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://borehole.dev"
|
|
18
|
+
Source = "https://github.com/borehole/cli"
|
|
19
|
+
|
|
20
|
+
[project.scripts]
|
|
21
|
+
borehole = "borehole.__main__:main"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
def main() -> None:
|
|
2
|
+
print(
|
|
3
|
+
"borehole 0.0.1 — pre-release\n\n"
|
|
4
|
+
"Borehole reads a repository's own history and reports what it finds,\n"
|
|
5
|
+
"with a commit, a path and a line range behind every finding.\n\n"
|
|
6
|
+
"The CLI is not functional yet. Follow along at https://borehole.dev"
|
|
7
|
+
)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
if __name__ == "__main__":
|
|
11
|
+
main()
|