pyw-core 0.0.0__tar.gz → 0.0.0.post2__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,110 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyw-core
3
+ Version: 0.0.0.post2
4
+ Summary: Reserved placeholder for pyw-core (umbrella namespace)
5
+ Project-URL: Homepage, https://github.com/pythonWoods/pyw-core
6
+ Project-URL: Documentation, https://pythonwoods.dev/docs/pyw-core/latest/
7
+ Project-URL: Issues, https://github.com/pythonWoods/pyw-core/issues
8
+ Project-URL: Changelog, https://github.com/pythonWoods/pyw-core/releases
9
+ Author: pythonWoods
10
+ License: MIT
11
+ License-File: LICENSE
12
+ Classifier: Development Status :: 2 - Pre-Alpha
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3 :: Only
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Typing :: Typed
17
+ Requires-Python: >=3.9
18
+ Description-Content-Type: text/markdown
19
+
20
+ # pyw-core 🌐
21
+ [![PyPI](https://img.shields.io/pypi/v/pyw-core.svg)](https://pypi.org/project/pyw-core/)
22
+ [![CI](https://github.com/pythonWoods/pyw-core/actions/workflows/ci.yml/badge.svg)](https://github.com/pythonWoods/pyw-core/actions/workflows/ci.yml)
23
+ [![License](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
24
+ > Namespace seed & common utilities for the **pythonWoods** ecosystem.
25
+
26
+ ## Ecosystem Overview
27
+
28
+ | Package | Description | Status |
29
+ |---------|-------------|--------|
30
+ | **pyw-core** | Namespace & common utilities | placeholder `0.0.0` |
31
+ | **pyw-logger** | Structured logging (rich + structlog) | placeholder `0.0.0` |
32
+ | **pyw-fs** | Unified filesystem (local/S3/GCS) | placeholder `0.0.0` |
33
+ | **pyw-secret** | Secret backends (.env, Vault, SSM) | placeholder `0.0.0` |
34
+ | **pyw-cli** | Typer CLI scaffolding | placeholder `0.0.0` |
35
+ | **pyw-config** | Configuration utilities | placeholder `0.0.0` |
36
+ | **pyw-vision** | Vision utilities & helpers | placeholder `0.0.0` |
37
+ | **pyw-motion** | Motion detection & tracking | placeholder `0.0.0` |
38
+ | **pyw-music21** | Music21 stubs & helpers | placeholder `0.0.0` |
39
+ | **pyw-musicparser** | Parse MIDI/Lilypond | placeholder `0.0.0` |
40
+
41
+ ## Bundle Packages
42
+
43
+ | Bundle | Description | Includes |
44
+ |--------|-------------|----------|
45
+ | **pyw-devtools** | Developer toolkit | logger, fs, cli, secret |
46
+ | **pyw-music** | Music processing | music21, musicparser |
47
+ | **pyw-cv** | Computer vision | vision, motion |
48
+
49
+ ## Philosophy
50
+
51
+ * **Namespace package** – `import pyw.*` per evitare conflitti.
52
+ * **Small, composable modules** – scegli solo ciò che ti serve.
53
+ * **Typed APIs** – Pydantic / dataclass per zero sorprese.
54
+ * **No heavy deps by default** – le librerie "costose" (Torch, OpenCV) sono extra.
55
+
56
+ ## Installation (nothing to use yet)
57
+
58
+ ```bash
59
+ pip install pyw-core
60
+ ```
61
+
62
+ *(Core è quasi vuoto: fornisce solo il namespace e helper comuni.)*
63
+
64
+ ## Usage
65
+
66
+ ```python
67
+ from pyw.core import BaseConfig, TypedDict
68
+ from pyw.core.utils import ensure_list, deep_merge
69
+
70
+ # Common utilities available across all pyw modules
71
+ config = BaseConfig()
72
+ data = ensure_list("single_item") # → ["single_item"]
73
+ merged = deep_merge(dict1, dict2)
74
+ ```
75
+
76
+ ## Bundle Installation
77
+
78
+ Per installare gruppi di moduli correlati:
79
+
80
+ ```bash
81
+ pip install pyw-devtools # logger + fs + cli + secret
82
+ pip install pyw-music # music21 + musicparser
83
+ pip install pyw-cv # vision + motion
84
+ ```
85
+
86
+ ## Roadmap
87
+
88
+ - 🏗️ **Core utilities**: Config base classes, type helpers
89
+ - 📦 **Namespace management**: Plugin discovery, module registry
90
+ - 🔧 **Development tools**: Testing utilities, debugging helpers
91
+ - 📚 **Documentation**: Sphinx integration, API reference
92
+ - 🎯 **Quality**: Type stubs, linting rules, best practices
93
+
94
+ ## Contributing
95
+
96
+ 1. Fork il repo del modulo che ti interessa (`pyw-fs`, ecc.).
97
+ 2. Crea virtual-env via Poetry: `poetry install && poetry shell`.
98
+ 3. Lancia linter e mypy: `ruff check . && mypy`.
99
+ 4. Apri la PR: CI esegue lint, type-check, build.
100
+
101
+ Felice coding nella foresta di **pythonWoods**! 🌲🐾
102
+
103
+ ## Links utili
104
+ Documentazione dev (work-in-progress) → https://pythonwoods.dev/docs/pyw-core/latest/
105
+
106
+ Issue tracker → https://github.com/pythonWoods/pyw-core/issues
107
+
108
+ Changelog → https://github.com/pythonWoods/pyw-core/releases
109
+
110
+ © pythonWoods — MIT License
@@ -0,0 +1,91 @@
1
+ # pyw-core 🌐
2
+ [![PyPI](https://img.shields.io/pypi/v/pyw-core.svg)](https://pypi.org/project/pyw-core/)
3
+ [![CI](https://github.com/pythonWoods/pyw-core/actions/workflows/ci.yml/badge.svg)](https://github.com/pythonWoods/pyw-core/actions/workflows/ci.yml)
4
+ [![License](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
5
+ > Namespace seed & common utilities for the **pythonWoods** ecosystem.
6
+
7
+ ## Ecosystem Overview
8
+
9
+ | Package | Description | Status |
10
+ |---------|-------------|--------|
11
+ | **pyw-core** | Namespace & common utilities | placeholder `0.0.0` |
12
+ | **pyw-logger** | Structured logging (rich + structlog) | placeholder `0.0.0` |
13
+ | **pyw-fs** | Unified filesystem (local/S3/GCS) | placeholder `0.0.0` |
14
+ | **pyw-secret** | Secret backends (.env, Vault, SSM) | placeholder `0.0.0` |
15
+ | **pyw-cli** | Typer CLI scaffolding | placeholder `0.0.0` |
16
+ | **pyw-config** | Configuration utilities | placeholder `0.0.0` |
17
+ | **pyw-vision** | Vision utilities & helpers | placeholder `0.0.0` |
18
+ | **pyw-motion** | Motion detection & tracking | placeholder `0.0.0` |
19
+ | **pyw-music21** | Music21 stubs & helpers | placeholder `0.0.0` |
20
+ | **pyw-musicparser** | Parse MIDI/Lilypond | placeholder `0.0.0` |
21
+
22
+ ## Bundle Packages
23
+
24
+ | Bundle | Description | Includes |
25
+ |--------|-------------|----------|
26
+ | **pyw-devtools** | Developer toolkit | logger, fs, cli, secret |
27
+ | **pyw-music** | Music processing | music21, musicparser |
28
+ | **pyw-cv** | Computer vision | vision, motion |
29
+
30
+ ## Philosophy
31
+
32
+ * **Namespace package** – `import pyw.*` per evitare conflitti.
33
+ * **Small, composable modules** – scegli solo ciò che ti serve.
34
+ * **Typed APIs** – Pydantic / dataclass per zero sorprese.
35
+ * **No heavy deps by default** – le librerie "costose" (Torch, OpenCV) sono extra.
36
+
37
+ ## Installation (nothing to use yet)
38
+
39
+ ```bash
40
+ pip install pyw-core
41
+ ```
42
+
43
+ *(Core è quasi vuoto: fornisce solo il namespace e helper comuni.)*
44
+
45
+ ## Usage
46
+
47
+ ```python
48
+ from pyw.core import BaseConfig, TypedDict
49
+ from pyw.core.utils import ensure_list, deep_merge
50
+
51
+ # Common utilities available across all pyw modules
52
+ config = BaseConfig()
53
+ data = ensure_list("single_item") # → ["single_item"]
54
+ merged = deep_merge(dict1, dict2)
55
+ ```
56
+
57
+ ## Bundle Installation
58
+
59
+ Per installare gruppi di moduli correlati:
60
+
61
+ ```bash
62
+ pip install pyw-devtools # logger + fs + cli + secret
63
+ pip install pyw-music # music21 + musicparser
64
+ pip install pyw-cv # vision + motion
65
+ ```
66
+
67
+ ## Roadmap
68
+
69
+ - 🏗️ **Core utilities**: Config base classes, type helpers
70
+ - 📦 **Namespace management**: Plugin discovery, module registry
71
+ - 🔧 **Development tools**: Testing utilities, debugging helpers
72
+ - 📚 **Documentation**: Sphinx integration, API reference
73
+ - 🎯 **Quality**: Type stubs, linting rules, best practices
74
+
75
+ ## Contributing
76
+
77
+ 1. Fork il repo del modulo che ti interessa (`pyw-fs`, ecc.).
78
+ 2. Crea virtual-env via Poetry: `poetry install && poetry shell`.
79
+ 3. Lancia linter e mypy: `ruff check . && mypy`.
80
+ 4. Apri la PR: CI esegue lint, type-check, build.
81
+
82
+ Felice coding nella foresta di **pythonWoods**! 🌲🐾
83
+
84
+ ## Links utili
85
+ Documentazione dev (work-in-progress) → https://pythonwoods.dev/docs/pyw-core/latest/
86
+
87
+ Issue tracker → https://github.com/pythonWoods/pyw-core/issues
88
+
89
+ Changelog → https://github.com/pythonWoods/pyw-core/releases
90
+
91
+ © pythonWoods — MIT License
@@ -0,0 +1,30 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.18"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "pyw-core"
7
+ version = "0.0.0.post2"
8
+ description = "Reserved placeholder for pyw-core (umbrella namespace)"
9
+ authors = [{name = "pythonWoods"}]
10
+ license = {text = "MIT"}
11
+ requires-python = ">=3.9"
12
+ readme = "README.md"
13
+
14
+
15
+ classifiers = [
16
+ "Development Status :: 2 - Pre-Alpha",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Programming Language :: Python :: 3 :: Only",
19
+ "Programming Language :: Python :: 3.11",
20
+ "Typing :: Typed",
21
+ ]
22
+
23
+ [project.urls]
24
+ Homepage = "https://github.com/pythonWoods/pyw-core"
25
+ Documentation = "https://pythonwoods.dev/docs/pyw-core/latest/"
26
+ Issues = "https://github.com/pythonWoods/pyw-core/issues"
27
+ Changelog = "https://github.com/pythonWoods/pyw-core/releases"
28
+
29
+ [tool.hatch.build.targets.wheel]
30
+ packages = ["src/pyw"]
pyw_core-0.0.0/PKG-INFO DELETED
@@ -1,14 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: pyw-core
3
- Version: 0.0.0
4
- Summary: Reserved placeholder for pyw-core (umbrella namespace)
5
- Project-URL: Homepage, https://github.com/pythonWoods/pyw-core
6
- Author: pythonWoods
7
- License: MIT
8
- License-File: LICENSE
9
- Requires-Python: >=3.9
10
- Description-Content-Type: text/markdown
11
-
12
- # pyw-core
13
-
14
- Reserved placeholder for pyw-core (umbrella namespace).
pyw_core-0.0.0/README.md DELETED
@@ -1,3 +0,0 @@
1
- # pyw-core
2
-
3
- Reserved placeholder for pyw-core (umbrella namespace).
@@ -1,19 +0,0 @@
1
- [build-system]
2
- requires = ["hatchling>=1.18"]
3
- build-backend = "hatchling.build"
4
-
5
- [project]
6
- name = "pyw-core"
7
- version = "0.0.0"
8
- description = "Reserved placeholder for pyw-core (umbrella namespace)"
9
- authors = [{name = "pythonWoods"}]
10
- license = {text = "MIT"}
11
- requires-python = ">=3.9"
12
- readme = "README.md"
13
-
14
-
15
- [project.urls]
16
- Homepage = "https://github.com/pythonWoods/pyw-core"
17
-
18
- [tool.hatch.build.targets.wheel]
19
- packages = ["src/pyw"]
File without changes