privlog 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.
privlog-0.0.1/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ Copyright (c) 2026 Aurelius Canon LLC
2
+
3
+ All rights reserved.
4
+
5
+ This software is proprietary and confidential.
6
+ Unauthorized copying, modification, distribution, or use of this software
7
+ is prohibited without explicit written permission from Aurelius Canon LLC.
privlog-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: privlog
3
+ Version: 0.0.1
4
+ Summary: Privacy-aware logging hygiene linter for Python
5
+ Author: Christopher Mariani
6
+ License: Proprietary
7
+ Requires-Python: >=3.9
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: semgrep
11
+ Requires-Dist: typer
12
+ Dynamic: license-file
13
+
14
+ # Privlog
15
+
16
+ Privacy-aware logging hygiene tooling for Python systems.
17
+
18
+ Privlog helps developers detect potentially sensitive data in logs and enforce safe logging patterns.
19
+
20
+ ⚠️ Early developer preview. Functionality may change.
@@ -0,0 +1,7 @@
1
+ # Privlog
2
+
3
+ Privacy-aware logging hygiene tooling for Python systems.
4
+
5
+ Privlog helps developers detect potentially sensitive data in logs and enforce safe logging patterns.
6
+
7
+ ⚠️ Early developer preview. Functionality may change.
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"
@@ -0,0 +1,19 @@
1
+ import typer
2
+
3
+ app = typer.Typer(help="Privacy-aware logging hygiene linter.")
4
+
5
+ # -------------------------
6
+ # CHECK COMMAND
7
+ # -------------------------
8
+ @app.callback(invoke_without_command=True)
9
+ def main(path: str = typer.Argument(".")):
10
+ """
11
+ Run Privlog checks on a path.
12
+ """
13
+ typer.echo(f"Running Privlog checks on: {path}")
14
+
15
+ # -------------------------
16
+ # ENTRYPOINT
17
+ # -------------------------
18
+ if __name__ == "__main__":
19
+ app()
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: privlog
3
+ Version: 0.0.1
4
+ Summary: Privacy-aware logging hygiene linter for Python
5
+ Author: Christopher Mariani
6
+ License: Proprietary
7
+ Requires-Python: >=3.9
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: semgrep
11
+ Requires-Dist: typer
12
+ Dynamic: license-file
13
+
14
+ # Privlog
15
+
16
+ Privacy-aware logging hygiene tooling for Python systems.
17
+
18
+ Privlog helps developers detect potentially sensitive data in logs and enforce safe logging patterns.
19
+
20
+ ⚠️ Early developer preview. Functionality may change.
@@ -0,0 +1,11 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ privlog/__init__.py
5
+ privlog/cli.py
6
+ privlog.egg-info/PKG-INFO
7
+ privlog.egg-info/SOURCES.txt
8
+ privlog.egg-info/dependency_links.txt
9
+ privlog.egg-info/entry_points.txt
10
+ privlog.egg-info/requires.txt
11
+ privlog.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ privlog = privlog.cli:app
@@ -0,0 +1,2 @@
1
+ semgrep
2
+ typer
@@ -0,0 +1 @@
1
+ privlog
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "privlog"
7
+ version = "0.0.1"
8
+ description = "Privacy-aware logging hygiene linter for Python"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ authors = [
12
+ {name="Christopher Mariani"}
13
+ ]
14
+ license = { text = "Proprietary" }
15
+
16
+ dependencies = [
17
+ "semgrep",
18
+ "typer"
19
+ ]
20
+
21
+ [project.scripts]
22
+ privlog = "privlog.cli:app"
23
+
24
+ [tool.setuptools]
25
+ packages = ["privlog"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+