cmeel 0.44.1__py3-none-any.whl → 0.45.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/__main__.py CHANGED
@@ -58,9 +58,14 @@ def parse_args() -> argparse.Namespace:
58
58
  sys.exit(0)
59
59
 
60
60
 
61
- if __name__ == "__main__":
61
+ def main():
62
+ """Run helpers."""
62
63
  args = parse_args()
63
64
  if args.cmd == "docker":
64
65
  docker_build(**vars(args))
65
66
  else:
66
67
  print(get_paths(**vars(args)))
68
+
69
+
70
+ if __name__ == "__main__":
71
+ main()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cmeel
3
- Version: 0.44.1
3
+ Version: 0.45.0
4
4
  Summary: Create Wheel from CMake projects
5
5
  Home-page: https://github.com/cmake-wheel/cmeel
6
6
  License: BSD-2-Clause
@@ -30,7 +30,7 @@ Project-URL: Documentation, https://cmeel.readthedocs.io/
30
30
  Project-URL: changelog, https://github.com/cmake-wheel/cmeel/blob/main/CHANGELOG.md
31
31
  Description-Content-Type: text/markdown
32
32
 
33
- # CMake Wheel
33
+ # CMake Wheel: cmeel
34
34
 
35
35
  [![PyPI version](https://badge.fury.io/py/cmeel.svg)](https://pypi.org/project/cmeel)
36
36
  [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/cmake-wheel/cmeel/main.svg)](https://results.pre-commit.ci/latest/github/cmake-wheel/cmeel/main)
@@ -1,5 +1,5 @@
1
1
  cmeel/__init__.py,sha256=qXgvoZwlDxRzuWhU5M88WFU42uSbOQS9TY4CfmKJTKY,352
2
- cmeel/__main__.py,sha256=M1qzHO5xn8t7GcgUXmh3P6iiZptgTNRYbdK3u5udyag,1613
2
+ cmeel/__main__.py,sha256=oUdz8nBX0mtsDHoMh-_leiTY7grjFwrEzV-wkupKfYk,1661
3
3
  cmeel/backports.py,sha256=ahVkwvNplt4xqY8RAb7lzzDks9tzrgB5QEAGVzkeBqg,1457
4
4
  cmeel/build.py,sha256=dvUj6ofbpQLau3VvlvagqP0X6ap0cjB1r0jPecfvphI,12583
5
5
  cmeel/config.py,sha256=VrxuFCaoQ7c9cVeGNNMFR7Hl6Vv_G44x8perI-XhrjA,3634
@@ -10,7 +10,8 @@ cmeel/metadata.py,sha256=sjcuglpUdalkTIB6REaH7eoD-6f04jzYIO9rftTaZOQ,8017
10
10
  cmeel/pth.py,sha256=N0G1d8BHRcuzNEfQaK9WMW0h6s-Sjigc7JUAPPoeu4Q,403
11
11
  cmeel/run.py,sha256=sD2Is7MEb5yIUu6dMjzyOJgb-ErJh-EBII9WzL13zco,743
12
12
  cmeel.pth,sha256=CD-QdG4ceUgq5wIEJZpipOSZQF8apq7i9u9RhsBWbc8,17
13
- cmeel-0.44.1.dist-info/LICENSE,sha256=4QHEuqIDbscybBc21CcazwRjix-rV-AH2QAZ4IqxlzQ,1324
14
- cmeel-0.44.1.dist-info/METADATA,sha256=y7juM2aAnwtTnuIiUVeNIJmUx7wHr1Iks-aAPWKKVPk,4608
15
- cmeel-0.44.1.dist-info/WHEEL,sha256=WGfLGfLX43Ei_YORXSnT54hxFygu34kMpcQdmgmEwCQ,88
16
- cmeel-0.44.1.dist-info/RECORD,,
13
+ cmeel-0.45.0.dist-info/LICENSE,sha256=4QHEuqIDbscybBc21CcazwRjix-rV-AH2QAZ4IqxlzQ,1324
14
+ cmeel-0.45.0.dist-info/METADATA,sha256=Uf18Ajzg2ePo2nQZ48aRMvDb2tIlSnmCNPnTgz3CxRw,4615
15
+ cmeel-0.45.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
16
+ cmeel-0.45.0.dist-info/entry_points.txt,sha256=AiK0nCTi1LpRXxyiSCcbPsLYIpSvYW8GF7jcllMIl1U,45
17
+ cmeel-0.45.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.6.0
2
+ Generator: poetry-core 1.6.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ cmeel=cmeel.__main__:main
3
+