asweep 0.1.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.
- asweep-0.1.1/PKG-INFO +13 -0
- asweep-0.1.1/asweep/__init__.py +0 -0
- asweep-0.1.1/pyproject.toml +23 -0
asweep-0.1.1/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: asweep
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Short alias for agentsweep — secret scanner for AI agent histories.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Ishannaik/agent-sweep
|
|
6
|
+
Author: agentsweep contributors
|
|
7
|
+
License: MIT
|
|
8
|
+
Keywords: claude-code,dlp,llm,secrets,security
|
|
9
|
+
Requires-Python: >=3.11
|
|
10
|
+
Requires-Dist: agentsweep>=0.1.1
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
Install `agentsweep` and run it as `asweep`. See https://github.com/Ishannaik/agent-sweep for full docs.
|
|
File without changes
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "asweep"
|
|
7
|
+
version = "0.1.1"
|
|
8
|
+
description = "Short alias for agentsweep — secret scanner for AI agent histories."
|
|
9
|
+
readme = { text = "Install `agentsweep` and run it as `asweep`. See https://github.com/Ishannaik/agent-sweep for full docs.", content-type = "text/markdown" }
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
authors = [{ name = "agentsweep contributors" }]
|
|
13
|
+
keywords = ["security", "secrets", "dlp", "claude-code", "llm"]
|
|
14
|
+
dependencies = ["agentsweep>=0.1.1"]
|
|
15
|
+
|
|
16
|
+
[project.scripts]
|
|
17
|
+
asweep = "agentsweep.cli:main"
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Homepage = "https://github.com/Ishannaik/agent-sweep"
|
|
21
|
+
|
|
22
|
+
[tool.hatch.build.targets.wheel]
|
|
23
|
+
packages = []
|