cppmake 127.0.6__tar.gz → 127.0.7__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cppmake
3
- Version: 127.0.6
3
+ Version: 127.0.7
4
4
  Summary: A modern C++ builder based on C++20 Modules.
5
5
  Author-email: anonymouspc <shyeyian@petalmail.com>
6
6
  License-Expression: MIT
@@ -2,9 +2,9 @@ from cppmakelib import *
2
2
 
3
3
  def main():
4
4
  if not exist_dir("package/std"): # install std as default
5
- create_dir("package/std/module")
6
- open ("package/std/module/std.cpp", 'w').write(default_std_module)
7
- open ("package/std/cppmake.py", 'w').write(default_std_cppmake)
5
+ create_dir ("package/std/module")
6
+ open ("package/std/module/std.cpp", 'w').write(default_std_module)
7
+ open ("package/std/cppmake.py", 'w').write(default_std_cppmake)
8
8
  Package("std").build()
9
9
 
10
10
  if Package("main").cppmake is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cppmake
3
- Version: 127.0.6
3
+ Version: 127.0.7
4
4
  Summary: A modern C++ builder based on C++20 Modules.
5
5
  Author-email: anonymouspc <shyeyian@petalmail.com>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "cppmake"
7
- version = "127.0.6"
7
+ version = "127.0.7"
8
8
  description = "A modern C++ builder based on C++20 Modules."
9
9
  authors = [{name = "anonymouspc", email = "shyeyian@petalmail.com"}]
10
10
  readme = "readme.md"
File without changes