saklam 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.
- saklam-0.0.1/PKG-INFO +20 -0
- saklam-0.0.1/README.md +7 -0
- saklam-0.0.1/pyproject.toml +19 -0
- saklam-0.0.1/saklam/__init__.py +2 -0
- saklam-0.0.1/saklam.egg-info/PKG-INFO +20 -0
- saklam-0.0.1/saklam.egg-info/SOURCES.txt +7 -0
- saklam-0.0.1/saklam.egg-info/dependency_links.txt +1 -0
- saklam-0.0.1/saklam.egg-info/top_level.txt +1 -0
- saklam-0.0.1/setup.cfg +4 -0
saklam-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: saklam
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Saklam: PII detection and masking for AI pipelines (Python package, placeholder until the first release).
|
|
5
|
+
Author-email: Stefan Böck <stefan@saklam.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://saklam.com
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: License :: Other/Proprietary License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.11
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# saklam
|
|
15
|
+
|
|
16
|
+
Placeholder release reserving the package name. The real package follows.
|
|
17
|
+
|
|
18
|
+
Saklam: PII detection and masking for AI pipelines (Python package, placeholder until the first release).
|
|
19
|
+
|
|
20
|
+
Saklam masks personal data before it reaches an AI model and restores it in the answer: on-premises, one license key for browser extension, Docker gateway and, with this package, plain Python. Details and license: https://saklam.com
|
saklam-0.0.1/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# saklam
|
|
2
|
+
|
|
3
|
+
Placeholder release reserving the package name. The real package follows.
|
|
4
|
+
|
|
5
|
+
Saklam: PII detection and masking for AI pipelines (Python package, placeholder until the first release).
|
|
6
|
+
|
|
7
|
+
Saklam masks personal data before it reaches an AI model and restores it in the answer: on-premises, one license key for browser extension, Docker gateway and, with this package, plain Python. Details and license: https://saklam.com
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "saklam"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Saklam: PII detection and masking for AI pipelines (Python package, placeholder until the first release)."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = {text = "Proprietary"}
|
|
12
|
+
authors = [{name = "Stefan Böck", email = "stefan@saklam.com"}]
|
|
13
|
+
classifiers = ["Development Status :: 1 - Planning", "License :: Other/Proprietary License", "Programming Language :: Python :: 3"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://saklam.com"
|
|
17
|
+
|
|
18
|
+
[tool.setuptools]
|
|
19
|
+
packages = ["saklam"]
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: saklam
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Saklam: PII detection and masking for AI pipelines (Python package, placeholder until the first release).
|
|
5
|
+
Author-email: Stefan Böck <stefan@saklam.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://saklam.com
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: License :: Other/Proprietary License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.11
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# saklam
|
|
15
|
+
|
|
16
|
+
Placeholder release reserving the package name. The real package follows.
|
|
17
|
+
|
|
18
|
+
Saklam: PII detection and masking for AI pipelines (Python package, placeholder until the first release).
|
|
19
|
+
|
|
20
|
+
Saklam masks personal data before it reaches an AI model and restores it in the answer: on-premises, one license key for browser extension, Docker gateway and, with this package, plain Python. Details and license: https://saklam.com
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
saklam
|
saklam-0.0.1/setup.cfg
ADDED