pep723-to-wheel 0.1.0__tar.gz → 0.1.2__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.
Files changed (21) hide show
  1. pep723_to_wheel-0.1.2/CLAUDE.md +1 -0
  2. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/PKG-INFO +31 -1
  3. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/README.md +2 -0
  4. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/pyproject.toml +34 -12
  5. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/uv.lock +1 -1
  6. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/.github/workflows/cd.yml +0 -0
  7. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/.github/workflows/cd_version.py +0 -0
  8. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/.github/workflows/ci.yml +0 -0
  9. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/.github/workflows/ruff-autofix.yml +0 -0
  10. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/.gitignore +0 -0
  11. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/AGENTS.md +0 -0
  12. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/LICENSE +0 -0
  13. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/Makefile +0 -0
  14. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/src/pep723_to_wheel/__init__.py +0 -0
  15. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/src/pep723_to_wheel/cli.py +0 -0
  16. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/src/pep723_to_wheel/core.py +0 -0
  17. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/tests/examples/marimo_notebook.py +0 -0
  18. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/tests/test_cd_version.py +0 -0
  19. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/tests/test_cli.py +0 -0
  20. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/tests/test_core.py +0 -0
  21. {pep723_to_wheel-0.1.0 → pep723_to_wheel-0.1.2}/tests/test_core_additional.py +0 -0
@@ -0,0 +1 @@
1
+ AGENTS.md
@@ -1,8 +1,36 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pep723-to-wheel
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: PoC for pep-723 script to wheel and back
5
+ Project-URL: Homepage, https://github.com/jooh/pep723-to-wheel
6
+ Project-URL: Repository, https://github.com/jooh/pep723-to-wheel
7
+ Project-URL: Issues, https://github.com/jooh/pep723-to-wheel/issues
8
+ License: MIT License
9
+
10
+ Copyright (c) 2026 Johan Carlin
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in all
20
+ copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ SOFTWARE.
5
29
  License-File: LICENSE
30
+ Classifier: License :: OSI Approved :: MIT License
31
+ Classifier: Operating System :: OS Independent
32
+ Classifier: Programming Language :: Python :: 3
33
+ Classifier: Programming Language :: Python :: 3.12
6
34
  Requires-Python: >=3.12
7
35
  Requires-Dist: pydantic>=2.5
8
36
  Requires-Dist: tomli-w>=1.1.0
@@ -12,6 +40,8 @@ Description-Content-Type: text/markdown
12
40
  # pep723-to-wheel
13
41
 
14
42
  [![CI](https://github.com/jooh/pep723-to-wheel/actions/workflows/ci.yml/badge.svg)](https://github.com/jooh/pep723-to-wheel/actions/workflows/ci.yml)
43
+ [![PyPI](https://img.shields.io/pypi/v/pep723-to-wheel.svg)](https://pypi.org/project/pep723-to-wheel/)
44
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
15
45
  [![codecov](https://codecov.io/gh/jooh/pep723-to-wheel/branch/main/graph/badge.svg?token=PS0IS5TVBV)](https://codecov.io/gh/jooh/pep723-to-wheel)
16
46
 
17
47
  A small utility for converting [PEP 723](https://peps.python.org/pep-0723/) inline dependency scripts into wheels and reconstructing scripts from wheels. Especially useful for taking [reproducible Marimo notebooks](https://marimo.io/blog/sandboxed-notebooks) to production environments.
@@ -1,6 +1,8 @@
1
1
  # pep723-to-wheel
2
2
 
3
3
  [![CI](https://github.com/jooh/pep723-to-wheel/actions/workflows/ci.yml/badge.svg)](https://github.com/jooh/pep723-to-wheel/actions/workflows/ci.yml)
4
+ [![PyPI](https://img.shields.io/pypi/v/pep723-to-wheel.svg)](https://pypi.org/project/pep723-to-wheel/)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
4
6
  [![codecov](https://codecov.io/gh/jooh/pep723-to-wheel/branch/main/graph/badge.svg?token=PS0IS5TVBV)](https://codecov.io/gh/jooh/pep723-to-wheel)
5
7
 
6
8
  A small utility for converting [PEP 723](https://peps.python.org/pep-0723/) inline dependency scripts into wheels and reconstructing scripts from wheels. Especially useful for taking [reproducible Marimo notebooks](https://marimo.io/blog/sandboxed-notebooks) to production environments.
@@ -1,41 +1,63 @@
1
1
  [project]
2
2
  name = "pep723-to-wheel"
3
- version = "0.1.0"
3
+ version = "0.1.2"
4
4
  description = "PoC for pep-723 script to wheel and back"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
7
+ classifiers = [
8
+ "License :: OSI Approved :: MIT License",
9
+ "Operating System :: OS Independent",
10
+ "Programming Language :: Python :: 3",
11
+ "Programming Language :: Python :: 3.12",
12
+ ]
7
13
  dependencies = [
8
14
  "pydantic>=2.5",
9
15
  "tomli-w>=1.1.0",
10
16
  "typer>=0.21.1",
11
17
  ]
12
18
 
19
+ [project.license]
20
+ file = "LICENSE"
21
+
22
+ [project.urls]
23
+ Homepage = "https://github.com/jooh/pep723-to-wheel"
24
+ Repository = "https://github.com/jooh/pep723-to-wheel"
25
+ Issues = "https://github.com/jooh/pep723-to-wheel/issues"
26
+
13
27
  [project.scripts]
14
28
  pep723-to-wheel = "pep723_to_wheel.cli:app"
15
29
 
16
30
  [build-system]
17
- requires = ["hatchling>=1.27.0"]
31
+ requires = [
32
+ "hatchling>=1.27.0",
33
+ ]
18
34
  build-backend = "hatchling.build"
19
35
 
20
36
  [tool.hatch.build.targets.wheel]
21
- packages = ["src/pep723_to_wheel"]
22
-
23
- [dependency-groups]
24
- dev = [
25
- "pytest>=9.0.2",
26
- "pytest-cov>=6.0.0",
27
- "ruff>=0.9.10",
28
- "ty>=0.0.14",
37
+ packages = [
38
+ "src/pep723_to_wheel",
29
39
  ]
30
40
 
31
41
  [tool.ty.src]
32
- exclude = ["tests/examples/**"]
42
+ exclude = [
43
+ "tests/examples/**",
44
+ ]
33
45
 
34
46
  [tool.coverage.run]
35
47
  branch = true
36
- source = ["pep723_to_wheel"]
48
+ source = [
49
+ "pep723_to_wheel",
50
+ ]
37
51
 
38
52
  [tool.coverage.report]
39
53
  fail_under = 100
40
54
  show_missing = true
41
55
  skip_covered = true
56
+
57
+ [dependency-groups]
58
+ dev = [
59
+ "pytest>=9.0.2",
60
+ "pytest-cov>=6.0.0",
61
+ "ruff>=0.9.10",
62
+ "ty>=0.0.14",
63
+ ]
@@ -147,7 +147,7 @@ wheels = [
147
147
 
148
148
  [[package]]
149
149
  name = "pep723-to-wheel"
150
- version = "0.1.0"
150
+ version = "0.1.1"
151
151
  source = { editable = "." }
152
152
  dependencies = [
153
153
  { name = "pydantic" },
File without changes