cmeel 0.56.0__py3-none-any.whl → 0.57.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.

Potentially problematic release.


This version of cmeel might be problematic. Click here for more details.

cmeel/metadata.py CHANGED
@@ -233,7 +233,7 @@ def get_keywords(conf: Dict[str, Any]) -> List[str]:
233
233
  def metadata(conf, requires: List[str], dist_info: Optional[Path] = None) -> List[str]:
234
234
  """Return the lines which should go in the METADATA / PKG-INFO file."""
235
235
  return [
236
- "Metadata-Version: 2.1",
236
+ "Metadata-Version: 2.4",
237
237
  f"Name: {conf['name']}",
238
238
  f"Version: {conf['version']}",
239
239
  f"Summary: {conf['description']}",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cmeel
3
- Version: 0.56.0
3
+ Version: 0.57.0
4
4
  Summary: Create Wheel from CMake projects
5
5
  Project-URL: Changelog, https://github.com/cmake-wheel/cmeel/blob/main/CHANGELOG.md
6
6
  Project-URL: Documentation, https://cmeel.readthedocs.io/
@@ -41,7 +41,7 @@ Following those relevant PEPs:
41
41
  - [PEP 518](https://peps.python.org/pep-0518/), Specifying Minimum Build System Requirements for Python Projects
42
42
  - [PEP 600](https://peps.python.org/pep-0600/), Future ‘manylinux’ Platform Tags for Portable Linux Built Distributions
43
43
  - [PEP 621](https://peps.python.org/pep-0621/), Storing project metadata in pyproject.toml
44
- - [PEP 639](https://peps.python.org/pep-0639/), Improving License Clarity with Better Package Metadata, **DRAFT**
44
+ - [PEP 639](https://peps.python.org/pep-0639/), Improving License Clarity with Better Package Metadata
45
45
  - [PEP 660](https://peps.python.org/pep-0660/), Editable installs for pyproject.toml based builds (wheel based)
46
46
 
47
47
  ## Chat
@@ -50,9 +50,8 @@ https://matrix.to/#/#cmake-wheel:matrix.org
50
50
 
51
51
  ## Basic idea
52
52
 
53
- Glue between PEP 517 & 660 entry points and modern CMake standard project configuration / build / test / install
54
-
55
- This Install in `${PYTHON_SITELIB}/cmeel.prefix/`:
53
+ Glue between PEP 517 & 660 entry points and modern CMake standard project configuration / build / test / install, and
54
+ install in `${PYTHON_SITELIB}/cmeel.prefix/`:
56
55
  - As there is a dot, it is not a valid python module name, so no risk of importing anything there by mistake
57
56
  - Play well with others, as everything is confined to `${PYTHON_SITELIB}/cmeel.prefix`
58
57
  - `${PYTHON_SITELIB}/cmeel.pth` automatically load `${PYTHON_SITELIB}/cmeel.prefix/${PYTHON_SITELIB}`, so python
@@ -66,22 +65,22 @@ This Install in `${PYTHON_SITELIB}/cmeel.prefix/`:
66
65
  extract from https://github.com/cmake-wheel/cmeel-example/blob/main/pyproject.toml:
67
66
 
68
67
  ```toml
68
+ [build-system]
69
+ build-backend = "cmeel"
70
+ requires = ["cmeel[build]"]
71
+
69
72
  [project]
70
- name = "cmeel-example"
71
- version = "0.4.12"
73
+ authors = [{email = "guilhem.saurel@laas.fr", name = "Guilhem Saurel"}]
72
74
  description = "This is an example project, to show how to use cmeel"
73
- requires-python = ">= 3.7"
74
75
  license = "BSD-2-Clause"
75
- authors = [{name = "Guilhem Saurel", email = "guilhem.saurel@laas.fr"}]
76
+ name = "cmeel-example"
77
+ requires-python = ">= 3.8"
78
+ version = "0.7.0"
76
79
 
77
80
  [project.urls]
81
+ changelog = "https://github.com/cmake-wheel/cmeel-example/blob/main/CHANGELOG.md"
78
82
  homepage = "https://github.com/cmake-wheel/cmeel-example"
79
83
  repository = "https://github.com/cmake-wheel/cmeel-example.git"
80
- changelog = "https://github.com/cmake-wheel/cmeel-example/blob/main/CHANGELOG.md"
81
-
82
- [build-system]
83
- requires = ["cmeel[build]"]
84
- build-backend = "cmeel"
85
84
  ```
86
85
 
87
86
  Complete specification is available at:
@@ -10,13 +10,13 @@ cmeel/consts.py,sha256=ol8loHUtvIkuINu4Go5ko7Sfkb7Ht9XBjjmPP-Sjcoo,252
10
10
  cmeel/docker.py,sha256=enT7gsB55WKcQ0U6_CwswFgqra2auS5ZRKsglgE3phA,2775
11
11
  cmeel/env.py,sha256=4AymbjlT3iNqYeeI70u3ZQMpiQfYo2vbNoZ4F15QbYQ,1235
12
12
  cmeel/impl.py,sha256=XBVIWmi17a3fcFyYvQA7cS3xeglwjVRQUj25IQOfg0k,6376
13
- cmeel/metadata.py,sha256=1zFAmsW4xzeBZxGhro6XXLhWUJ2ZRLXxTelumzyWaRk,8606
13
+ cmeel/metadata.py,sha256=DmBkpAHyHG995g3ZxWe21JvdkmJL6_OLN4W3MSaiDzY,8606
14
14
  cmeel/release.py,sha256=svN_mQwu9HeKTF3517zNd0XPkbZeNS21aps6NiW-e7A,1357
15
15
  cmeel/run.py,sha256=AaXiEvM7DhI0gbAzjBmBKt7KoHRAD8jrxWRghxXmeec,744
16
16
  cmeel/sdist.py,sha256=DA5h9IrQfhuoQucYfv73S8jpKNY2ThfIrVSKSvsJ5ec,1961
17
17
  cmeel/utils.py,sha256=1q-iQdhxNXluQoUPME1k34YClFUQ4KSwMcIHpREYHEY,8114
18
- cmeel-0.56.0.dist-info/METADATA,sha256=SyhhQG9ly3DiEmZXXA01H0imknUlSqfhoDZlTPzHnbg,4705
19
- cmeel-0.56.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
20
- cmeel-0.56.0.dist-info/entry_points.txt,sha256=xtIRc5QUYVGuGehxx2BrMEs3qoQ44cXF7D96_tfpZDM,46
21
- cmeel-0.56.0.dist-info/licenses/LICENSE,sha256=4QHEuqIDbscybBc21CcazwRjix-rV-AH2QAZ4IqxlzQ,1324
22
- cmeel-0.56.0.dist-info/RECORD,,
18
+ cmeel-0.57.0.dist-info/METADATA,sha256=-f3DX-fMbK6Wi8sjPvRbw3KT9a5wWPvN1N-nLAZFuZ4,4692
19
+ cmeel-0.57.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
20
+ cmeel-0.57.0.dist-info/entry_points.txt,sha256=xtIRc5QUYVGuGehxx2BrMEs3qoQ44cXF7D96_tfpZDM,46
21
+ cmeel-0.57.0.dist-info/licenses/LICENSE,sha256=4QHEuqIDbscybBc21CcazwRjix-rV-AH2QAZ4IqxlzQ,1324
22
+ cmeel-0.57.0.dist-info/RECORD,,
File without changes