pyw-core 0.0.0__tar.gz → 0.0.0.post1__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.
- pyw_core-0.0.0.post1/PKG-INFO +71 -0
- pyw_core-0.0.0.post1/README.md +52 -0
- pyw_core-0.0.0.post1/pyproject.toml +30 -0
- pyw_core-0.0.0/PKG-INFO +0 -14
- pyw_core-0.0.0/README.md +0 -3
- pyw_core-0.0.0/pyproject.toml +0 -19
- {pyw_core-0.0.0 → pyw_core-0.0.0.post1}/LICENSE +0 -0
- {pyw_core-0.0.0 → pyw_core-0.0.0.post1}/src/pyw/__init__.py +0 -0
@@ -0,0 +1,71 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: pyw-core
|
3
|
+
Version: 0.0.0.post1
|
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
|
+
[](https://pypi.org/project/pyw-core/)
|
22
|
+
[](https://github.com/pythonWoods/pyw-core/actions/workflows/ci.yml)
|
23
|
+
[](LICENSE)
|
24
|
+
> Namespace seed & common utilities for the **pythonWoods** ecosystem.
|
25
|
+
|
26
|
+
## Components
|
27
|
+
|
28
|
+
| Package | Description | Status |
|
29
|
+
|---------|-------------|--------|
|
30
|
+
| **pyw-core** | Structured + colorful logging | placeholder `0.0.0` |
|
31
|
+
| **pyw-fs** | Unified filesystem (local/S3/GCS) | 0.0.0 |
|
32
|
+
| **pyw-secret** | Secret back-ends (.env, Vault, SSM) | 0.0.0 |
|
33
|
+
| **pyw-cli** | Typer CLI scaffold | 0.0.0 |
|
34
|
+
| **pyw-music21** | Music21 stubs & helpers | 0.0.0 |
|
35
|
+
| **pyw-musicparser** | Parse MIDI/Lilypond | 0.0.0 |
|
36
|
+
| **pyw-core** | Meta-package: install everything | 0.0.0 |
|
37
|
+
| **pyw-devtools** | Bundle for devs (logger, fs, cli, secret) | 0.0.0 |
|
38
|
+
|
39
|
+
## Philosophy
|
40
|
+
|
41
|
+
* **Namespace package** – `import pyw.*` per evitare conflitti.
|
42
|
+
* **Small, composable modules** – scegli solo ciò che ti serve.
|
43
|
+
* **Typed APIs** – Pydantic / dataclass per zero sorprese.
|
44
|
+
* **No heavy deps by default** – le librerie “costose” (Torch, OpenCV) sono extra.
|
45
|
+
|
46
|
+
### Installation (nothing to use yet)
|
47
|
+
|
48
|
+
```bash
|
49
|
+
pip install pyw-core
|
50
|
+
```
|
51
|
+
|
52
|
+
*(Core è quasi vuoto: fornisce solo il namespace e helper comuni.)*
|
53
|
+
|
54
|
+
## Contributing
|
55
|
+
|
56
|
+
1. Fork il repo del modulo che ti interessa (`pyw-fs`, ecc.).
|
57
|
+
2. Crea virtual-env via Poetry: `poetry install && poetry shell`.
|
58
|
+
3. Lancia linter e mypy: `ruff check . && mypy`.
|
59
|
+
4. Apri la PR: CI esegue lint, type-check, build.
|
60
|
+
|
61
|
+
Felice coding nella foresta di **pythonWoods**! 🌲🐾
|
62
|
+
|
63
|
+
|
64
|
+
## Links utili
|
65
|
+
Documentazione dev (work-in-progress) → https://pythonwoods.dev/docs/pyw-core/latest/
|
66
|
+
|
67
|
+
Issue tracker → https://github.com/pythonWoods/pyw-core/issues
|
68
|
+
|
69
|
+
Changelog → https://github.com/pythonWoods/pyw-core/releases
|
70
|
+
|
71
|
+
© pythonWoods — MIT License
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# pyw-core 🌐
|
2
|
+
[](https://pypi.org/project/pyw-core/)
|
3
|
+
[](https://github.com/pythonWoods/pyw-core/actions/workflows/ci.yml)
|
4
|
+
[](LICENSE)
|
5
|
+
> Namespace seed & common utilities for the **pythonWoods** ecosystem.
|
6
|
+
|
7
|
+
## Components
|
8
|
+
|
9
|
+
| Package | Description | Status |
|
10
|
+
|---------|-------------|--------|
|
11
|
+
| **pyw-core** | Structured + colorful logging | placeholder `0.0.0` |
|
12
|
+
| **pyw-fs** | Unified filesystem (local/S3/GCS) | 0.0.0 |
|
13
|
+
| **pyw-secret** | Secret back-ends (.env, Vault, SSM) | 0.0.0 |
|
14
|
+
| **pyw-cli** | Typer CLI scaffold | 0.0.0 |
|
15
|
+
| **pyw-music21** | Music21 stubs & helpers | 0.0.0 |
|
16
|
+
| **pyw-musicparser** | Parse MIDI/Lilypond | 0.0.0 |
|
17
|
+
| **pyw-core** | Meta-package: install everything | 0.0.0 |
|
18
|
+
| **pyw-devtools** | Bundle for devs (logger, fs, cli, secret) | 0.0.0 |
|
19
|
+
|
20
|
+
## Philosophy
|
21
|
+
|
22
|
+
* **Namespace package** – `import pyw.*` per evitare conflitti.
|
23
|
+
* **Small, composable modules** – scegli solo ciò che ti serve.
|
24
|
+
* **Typed APIs** – Pydantic / dataclass per zero sorprese.
|
25
|
+
* **No heavy deps by default** – le librerie “costose” (Torch, OpenCV) sono extra.
|
26
|
+
|
27
|
+
### Installation (nothing to use yet)
|
28
|
+
|
29
|
+
```bash
|
30
|
+
pip install pyw-core
|
31
|
+
```
|
32
|
+
|
33
|
+
*(Core è quasi vuoto: fornisce solo il namespace e helper comuni.)*
|
34
|
+
|
35
|
+
## Contributing
|
36
|
+
|
37
|
+
1. Fork il repo del modulo che ti interessa (`pyw-fs`, ecc.).
|
38
|
+
2. Crea virtual-env via Poetry: `poetry install && poetry shell`.
|
39
|
+
3. Lancia linter e mypy: `ruff check . && mypy`.
|
40
|
+
4. Apri la PR: CI esegue lint, type-check, build.
|
41
|
+
|
42
|
+
Felice coding nella foresta di **pythonWoods**! 🌲🐾
|
43
|
+
|
44
|
+
|
45
|
+
## Links utili
|
46
|
+
Documentazione dev (work-in-progress) → https://pythonwoods.dev/docs/pyw-core/latest/
|
47
|
+
|
48
|
+
Issue tracker → https://github.com/pythonWoods/pyw-core/issues
|
49
|
+
|
50
|
+
Changelog → https://github.com/pythonWoods/pyw-core/releases
|
51
|
+
|
52
|
+
© 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.post1"
|
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
pyw_core-0.0.0/pyproject.toml
DELETED
@@ -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
|
File without changes
|