capo-maestro 0.0.0__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.
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026, Fabio Tavares Leitao
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the conditions of the
|
|
7
|
+
BSD-3-Clause license (https://opensource.org/license/bsd-3-clause) are met.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: capo-maestro
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved name for the Capo Maestro (cap-mae) beastie — Data Boar beastiary. Placeholder; implementation forthcoming.
|
|
5
|
+
Project-URL: Homepage, https://github.com/FabioLeitao/data-boar
|
|
6
|
+
Author-email: Fabio Tavares Leitao <fabio.tleitao@gmail.com>
|
|
7
|
+
License: BSD-3-Clause
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Keywords: beastiary,compliance,data-boar,pii,placeholder,privacy
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Security
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Capo Maestro (`cap-mae`)
|
|
19
|
+
|
|
20
|
+
Reserved name — part of the **Data Boar** beastiary (open-core privacy/compliance tooling).
|
|
21
|
+
|
|
22
|
+
> **Status:** placeholder. This package reserves the `capo-maestro` name on PyPI.
|
|
23
|
+
> Implementation forthcoming. Project home: <https://github.com/FabioLeitao/data-boar>
|
|
24
|
+
|
|
25
|
+
Licensed under **BSD-3-Clause**.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Capo Maestro (`cap-mae`)
|
|
2
|
+
|
|
3
|
+
Reserved name — part of the **Data Boar** beastiary (open-core privacy/compliance tooling).
|
|
4
|
+
|
|
5
|
+
> **Status:** placeholder. This package reserves the `capo-maestro` name on PyPI.
|
|
6
|
+
> Implementation forthcoming. Project home: <https://github.com/FabioLeitao/data-boar>
|
|
7
|
+
|
|
8
|
+
Licensed under **BSD-3-Clause**.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "capo-maestro"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Reserved name for the Capo Maestro (cap-mae) beastie — Data Boar beastiary. Placeholder; implementation forthcoming."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "BSD-3-Clause" }
|
|
12
|
+
authors = [{ name = "Fabio Tavares Leitao", email = "fabio.tleitao@gmail.com" }]
|
|
13
|
+
keywords = ["data-boar", "beastiary", "privacy", "compliance", "pii", "placeholder"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"License :: OSI Approved :: BSD License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Topic :: Security",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://github.com/FabioLeitao/data-boar"
|
|
24
|
+
|
|
25
|
+
[tool.hatch.build.targets.wheel]
|
|
26
|
+
packages = ["src/capo_maestro"]
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""Capo Maestro (cap-mae) — reserved namespace for the Data Boar beastiary.
|
|
2
|
+
|
|
3
|
+
This is a placeholder package reserving the name on PyPI. The real
|
|
4
|
+
implementation is forthcoming. See: https://github.com/FabioLeitao/data-boar
|
|
5
|
+
"""
|
|
6
|
+
__version__ = "0.0.0"
|
|
7
|
+
__beastie__ = "Capo Maestro"
|
|
8
|
+
__mnemonic__ = "cap-mae"
|