kspl 1.1.1__py3-none-any.whl → 1.3.0__py3-none-any.whl
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.
- kspl/__init__.py +1 -1
- kspl/_run.py +13 -9
- kspl/config_slurper.py +88 -85
- kspl/edit.py +71 -84
- kspl/generate.py +22 -43
- kspl/gui.py +416 -83
- kspl/kconfig.py +228 -242
- kspl/main.py +35 -39
- {kspl-1.1.1.dist-info → kspl-1.3.0.dist-info}/METADATA +27 -39
- kspl-1.3.0.dist-info/RECORD +14 -0
- {kspl-1.1.1.dist-info → kspl-1.3.0.dist-info}/WHEEL +1 -1
- kspl-1.1.1.dist-info/RECORD +0 -14
- {kspl-1.1.1.dist-info → kspl-1.3.0.dist-info}/LICENSE +0 -0
- {kspl-1.1.1.dist-info → kspl-1.3.0.dist-info}/entry_points.txt +0 -0
@@ -1,29 +1,26 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: kspl
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.3.0
|
4
4
|
Summary: KConfig GUI for Software Product Lines with multiple variants.
|
5
|
-
Home-page: https://github.com/cuinixam/kspl
|
6
5
|
License: MIT
|
7
6
|
Author: Cuinixam
|
8
7
|
Author-email: cuinixam@me.com
|
9
|
-
Requires-Python:
|
8
|
+
Requires-Python: <4.0,>=3.10
|
10
9
|
Classifier: Development Status :: 2 - Pre-Alpha
|
11
10
|
Classifier: Intended Audience :: Developers
|
12
|
-
Classifier: License :: OSI Approved :: MIT License
|
13
11
|
Classifier: Natural Language :: English
|
14
12
|
Classifier: Operating System :: OS Independent
|
15
|
-
Classifier: Programming Language :: Python :: 3
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
16
14
|
Classifier: Programming Language :: Python :: 3.10
|
17
15
|
Classifier: Programming Language :: Python :: 3.11
|
18
16
|
Classifier: Programming Language :: Python :: 3.12
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
19
18
|
Classifier: Topic :: Software Development :: Libraries
|
20
|
-
Requires-Dist: customtkinter (>=5
|
21
|
-
Requires-Dist: kconfiglib (>=14
|
22
|
-
Requires-Dist:
|
23
|
-
Requires-Dist: py-app-dev (>=2.0.0,<3.0.0)
|
19
|
+
Requires-Dist: customtkinter (>=5,<6)
|
20
|
+
Requires-Dist: kconfiglib (>=14,<15)
|
21
|
+
Requires-Dist: py-app-dev (>=2,<3)
|
24
22
|
Project-URL: Bug Tracker, https://github.com/cuinixam/kspl/issues
|
25
23
|
Project-URL: Changelog, https://github.com/cuinixam/kspl/blob/main/CHANGELOG.md
|
26
|
-
Project-URL: Documentation, https://kspl.readthedocs.io
|
27
24
|
Project-URL: Repository, https://github.com/cuinixam/kspl
|
28
25
|
Description-Content-Type: text/markdown
|
29
26
|
|
@@ -33,19 +30,19 @@ Description-Content-Type: text/markdown
|
|
33
30
|
<a href="https://github.com/cuinixam/kspl/actions/workflows/ci.yml?query=branch%3Amain">
|
34
31
|
<img src="https://img.shields.io/github/actions/workflow/status/cuinixam/kspl/ci.yml?branch=main&label=CI&logo=github&style=flat-square" alt="CI Status" >
|
35
32
|
</a>
|
36
|
-
<a href="https://kspl.readthedocs.io">
|
37
|
-
<img src="https://img.shields.io/readthedocs/kspl.svg?logo=read-the-docs&logoColor=fff&style=flat-square" alt="Documentation Status">
|
38
|
-
</a>
|
39
33
|
<a href="https://codecov.io/gh/cuinixam/kspl">
|
40
34
|
<img src="https://img.shields.io/codecov/c/github/cuinixam/kspl.svg?logo=codecov&logoColor=fff&style=flat-square" alt="Test coverage percentage">
|
41
35
|
</a>
|
42
36
|
</p>
|
43
37
|
<p align="center">
|
44
|
-
<a href="https://
|
45
|
-
<img src="https://img.shields.io/
|
38
|
+
<a href="https://github.com/astral-sh/uv">
|
39
|
+
<img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json" alt="uv">
|
40
|
+
</a>
|
41
|
+
<a href="https://github.com/astral-sh/ruff">
|
42
|
+
<img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json" alt="Ruff">
|
46
43
|
</a>
|
47
|
-
<a href="https://github.com/
|
48
|
-
<img src="https://img.shields.io/badge/
|
44
|
+
<a href="https://github.com/cuinixam/pypeline">
|
45
|
+
<img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/cuinixam/pypeline/refs/heads/main/assets/badge/v0.json" alt="pypeline">
|
49
46
|
</a>
|
50
47
|
<a href="https://github.com/pre-commit/pre-commit">
|
51
48
|
<img src="https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white&style=flat-square" alt="pre-commit">
|
@@ -59,44 +56,33 @@ Description-Content-Type: text/markdown
|
|
59
56
|
<img src="https://img.shields.io/pypi/l/kspl.svg?style=flat-square" alt="License">
|
60
57
|
</p>
|
61
58
|
|
62
|
-
|
59
|
+
---
|
63
60
|
|
64
|
-
|
61
|
+
**Source Code**: <a href="https://github.com/cuinixam/kspl" target="_blank">https://github.com/cuinixam/kspl </a>
|
65
62
|
|
66
|
-
|
63
|
+
---
|
67
64
|
|
68
|
-
|
65
|
+
KConfig GUI for Software Product Lines with multiple variants.
|
69
66
|
|
70
67
|
## Start developing
|
71
68
|
|
72
|
-
The project uses
|
73
|
-
|
74
|
-
This will install Python and Poetry as configured in `scoopfile.json`.
|
75
|
-
|
76
|
-
```powershell
|
77
|
-
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope CurrentUser -Force
|
78
|
-
.\bootstrap.ps1
|
79
|
-
```
|
80
|
-
|
81
|
-
To install the development dependencies in a virtual environment, type:
|
69
|
+
The project uses UV for dependencies management and packaging and the [pypeline](https://github.com/cuinixam/pypeline) for streamlining the development workflow.
|
70
|
+
Use pipx (or your favorite package manager) to install the `pypeline` in an isolated environment:
|
82
71
|
|
83
72
|
```shell
|
84
|
-
|
73
|
+
pipx install pypeline-runner
|
85
74
|
```
|
86
75
|
|
87
|
-
|
76
|
+
To bootstrap the project and run all the steps configured in the `pypeline.yaml` file, execute the following command:
|
88
77
|
|
89
78
|
```shell
|
90
|
-
|
79
|
+
pypeline run
|
91
80
|
```
|
92
81
|
|
93
|
-
Check out the Poetry documentation for more information on the available commands.
|
94
|
-
|
95
82
|
For those using [VS Code](https://code.visualstudio.com/) there are tasks defined for the most common commands:
|
96
83
|
|
97
|
-
- install development dependencies
|
98
84
|
- run tests
|
99
|
-
- run
|
85
|
+
- run pre-commit checks (linters, formatters, etc.)
|
100
86
|
- generate documentation
|
101
87
|
|
102
88
|
See the `.vscode/tasks.json` for more details.
|
@@ -120,6 +106,8 @@ This project follows the [all-contributors](https://github.com/all-contributors/
|
|
120
106
|
|
121
107
|
## Credits
|
122
108
|
|
109
|
+
[](https://github.com/copier-org/copier)
|
110
|
+
|
123
111
|
This package was created with
|
124
112
|
[Copier](https://copier.readthedocs.io/) and the
|
125
113
|
[browniebroke/pypackage-template](https://github.com/browniebroke/pypackage-template)
|
@@ -0,0 +1,14 @@
|
|
1
|
+
kspl/__init__.py,sha256=F5mW07pSyGrqDNY2Ehr-UpDzpBtN-FsYU0QGZWf6PJE,22
|
2
|
+
kspl/_run.py,sha256=0X7DbSk5DYP2uU0hRIf0XetUNerrABit5U4AdG8wE00,338
|
3
|
+
kspl/config_slurper.py,sha256=co7nTtSznEMQ2uFv5L7O_cUDnDSoIXxGk9PKsdRAAjI,3407
|
4
|
+
kspl/edit.py,sha256=AVy4obDx_FJvHT_Qr0HSPpUcJeiz13gXdsjBTB8d5AU,3156
|
5
|
+
kspl/generate.py,sha256=pcRqgJDZ5gmCwnF_PcwczV_e-w4HK9CLh5ra82HCf4M,6831
|
6
|
+
kspl/gui.py,sha256=reOCaxxp5do7F68II3gCu-WkT6fG98_5pVqEeNEHe6U,26397
|
7
|
+
kspl/kconfig.py,sha256=eVZKuOTAG7bRzsTfinDq940gWTArxnLKA1YRaYT6kVs,8707
|
8
|
+
kspl/main.py,sha256=U_zVxCcJLqFILSeiNqHNX3adraVAEkKaCAerRqiHF6A,1007
|
9
|
+
kspl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
+
kspl-1.3.0.dist-info/LICENSE,sha256=eJwI5n6lDPIjogNcYBln7NKGtreVlek905oBBY_HnxQ,1066
|
11
|
+
kspl-1.3.0.dist-info/METADATA,sha256=6LzdWwKxOyGklRRfzXd1idcv331g-PshBSidInNoG9A,4842
|
12
|
+
kspl-1.3.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
13
|
+
kspl-1.3.0.dist-info/entry_points.txt,sha256=6haBy5AuYGJblw1cWUTx5N41Ilg4YALABhi1psEvruY,39
|
14
|
+
kspl-1.3.0.dist-info/RECORD,,
|
kspl-1.1.1.dist-info/RECORD
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
kspl/__init__.py,sha256=q8_5C0f-8mHWNb6mMw02zlYPnEGXBqvOmP3z0CEwZKM,22
|
2
|
-
kspl/_run.py,sha256=fVBG5gdc16mIdLiIIbLZyXxgWuFs1HgPHAKvZtGRAAU,343
|
3
|
-
kspl/config_slurper.py,sha256=hOum6OJWlpJReeVNTNivg_e9kjZwxghwW7Z0aFP-DVg,2925
|
4
|
-
kspl/edit.py,sha256=FbNO9X1zAoMeXFrw-CKVEWuZMhfcOJiebDNgaPhsIeg,3419
|
5
|
-
kspl/generate.py,sha256=u-IxoBTYm5SHEWJv52qvf3UTCNPGqMWdCGYuuXVVGHE,7131
|
6
|
-
kspl/gui.py,sha256=DjMYKVxH5c4cv76PnMTZEKhpUMKC1j3pNmYzeFQvl2c,11678
|
7
|
-
kspl/kconfig.py,sha256=AKRfeT5k6jp-y6PtVKgsUXS2i0WjwiuhC1CJOQ7Nk88,9205
|
8
|
-
kspl/main.py,sha256=Y-IA7MO6a533NLuFLHsSvB7jNT6NRBZb2fi9ZEla29A,1074
|
9
|
-
kspl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
-
kspl-1.1.1.dist-info/LICENSE,sha256=eJwI5n6lDPIjogNcYBln7NKGtreVlek905oBBY_HnxQ,1066
|
11
|
-
kspl-1.1.1.dist-info/METADATA,sha256=PkUM0F8o_HVDTdsTe7wtZfLvAkTaEu0s5bjjApy5fJo,5918
|
12
|
-
kspl-1.1.1.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
13
|
-
kspl-1.1.1.dist-info/entry_points.txt,sha256=6haBy5AuYGJblw1cWUTx5N41Ilg4YALABhi1psEvruY,39
|
14
|
-
kspl-1.1.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|