struct-frame 0.0.13__tar.gz → 0.0.14__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.

Potentially problematic release.


This version of struct-frame might be problematic. Click here for more details.

Files changed (30) hide show
  1. {struct_frame-0.0.13 → struct_frame-0.0.14}/PKG-INFO +2 -2
  2. {struct_frame-0.0.13 → struct_frame-0.0.14}/README.md +1 -1
  3. {struct_frame-0.0.13 → struct_frame-0.0.14}/c/biostream.sf.h +1 -1
  4. {struct_frame-0.0.13 → struct_frame-0.0.14}/pyproject.toml +3 -3
  5. struct_frame-0.0.14/src/main.py +3 -0
  6. struct_frame-0.0.14/src/struct_frame/__init__.py +8 -0
  7. struct_frame-0.0.14/src/struct_frame/__main__.py +8 -0
  8. {struct_frame-0.0.13/src/struct-frame → struct_frame-0.0.14/src/struct_frame}/c_gen.py +1 -1
  9. struct_frame-0.0.13/src/struct-frame/__main__.py → struct_frame-0.0.14/src/struct_frame/generate.py +2 -2
  10. {struct_frame-0.0.13/src/struct-frame → struct_frame-0.0.14/src/struct_frame}/ts_gen.py +1 -1
  11. {struct_frame-0.0.13 → struct_frame-0.0.14}/ts/biostream.sf.ts +1 -1
  12. struct_frame-0.0.13/src/struct-frame/__init__.py +0 -6
  13. {struct_frame-0.0.13 → struct_frame-0.0.14}/.gitignore +0 -0
  14. {struct_frame-0.0.13 → struct_frame-0.0.14}/LICENSE +0 -0
  15. {struct_frame-0.0.13 → struct_frame-0.0.14}/biostream.proto +0 -0
  16. {struct_frame-0.0.13 → struct_frame-0.0.14}/index.ts +0 -0
  17. {struct_frame-0.0.13 → struct_frame-0.0.14}/main.c +0 -0
  18. {struct_frame-0.0.13 → struct_frame-0.0.14}/myl_vehicle.proto +0 -0
  19. {struct_frame-0.0.13 → struct_frame-0.0.14}/package-lock.json +0 -0
  20. {struct_frame-0.0.13 → struct_frame-0.0.14}/package.json +0 -0
  21. {struct_frame-0.0.13/src/struct-frame → struct_frame-0.0.14/src/struct_frame}/base.py +0 -0
  22. {struct_frame-0.0.13/src/struct-frame → struct_frame-0.0.14/src/struct_frame}/boilerplate/c/struct_frame.h +0 -0
  23. {struct_frame-0.0.13/src/struct-frame → struct_frame-0.0.14/src/struct_frame}/boilerplate/c/struct_frame_gen.h +0 -0
  24. {struct_frame-0.0.13/src/struct-frame → struct_frame-0.0.14/src/struct_frame}/boilerplate/c/struct_frame_parser.h +0 -0
  25. {struct_frame-0.0.13/src/struct-frame → struct_frame-0.0.14/src/struct_frame}/boilerplate/c/struct_frame_types.h +0 -0
  26. {struct_frame-0.0.13/src/struct-frame → struct_frame-0.0.14/src/struct_frame}/boilerplate/ts/struct_frame.ts +0 -0
  27. {struct_frame-0.0.13/src/struct-frame → struct_frame-0.0.14/src/struct_frame}/boilerplate/ts/struct_frame_gen.ts +0 -0
  28. {struct_frame-0.0.13/src/struct-frame → struct_frame-0.0.14/src/struct_frame}/boilerplate/ts/struct_frame_parser.ts +0 -0
  29. {struct_frame-0.0.13/src/struct-frame → struct_frame-0.0.14/src/struct_frame}/boilerplate/ts/struct_frame_types.ts +0 -0
  30. {struct_frame-0.0.13 → struct_frame-0.0.14}/tsconfig.json +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: struct-frame
3
- Version: 0.0.13
3
+ Version: 0.0.14
4
4
  Summary: A framework for serializing data with headers
5
5
  Project-URL: Homepage, https://github.com/mylonics/struct-frame
6
6
  Project-URL: Issues, https://github.com/mylonics/struct-frame/issues
@@ -33,4 +33,4 @@ py -m twine upload dist/*
33
33
  py -m pip install --upgrade twine
34
34
 
35
35
 
36
- run locally python .\src\struct-frame
36
+ run locally python .\src\main.py
@@ -18,4 +18,4 @@ py -m twine upload dist/*
18
18
  py -m pip install --upgrade twine
19
19
 
20
20
 
21
- run locally python .\src\struct-frame
21
+ run locally python .\src\main.py
@@ -1,5 +1,5 @@
1
1
  /* Automatically generated struct frame header */
2
- /* Generated by 0.0.1 at Sat Feb 8 11:10:26 2025. */
2
+ /* Generated by 0.0.1 at Sat Feb 8 11:34:13 2025. */
3
3
 
4
4
  #pragma once
5
5
  #pragma pack(1)
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "struct-frame"
7
- version = "0.0.13"
7
+ version = "0.0.14"
8
8
  authors = [
9
9
  { name="Rijesh Augustine", email="rijesh@mylonics.com" },
10
10
  ]
@@ -27,8 +27,8 @@ Issues = "https://github.com/mylonics/struct-frame/issues"
27
27
 
28
28
 
29
29
  [tool.hatch.build.targets.wheel]
30
- only-include = ["src/struct-frame"]
30
+ only-include = ["src/struct_frame"]
31
31
 
32
32
  [tool.hatch.build.targets.wheel.sources]
33
33
  "src" = ""
34
- "boilerplate" = "src/struct-frame/boilerplate"
34
+ "boilerplate" = "src/struct_frame/boilerplate"
@@ -0,0 +1,3 @@
1
+ import struct_frame
2
+
3
+ struct_frame.main()
@@ -0,0 +1,8 @@
1
+ from .base import version, NamingStyleC, CamelToSnakeCase, pascalCase
2
+
3
+ from .c_gen import FileCGen
4
+ from .ts_gen import FileTsGen
5
+
6
+ from .generate import main
7
+
8
+ __all__ = ["main", "FileCGen", "FileTsGen", "version", "NamingStyleC", "CamelToSnakeCase", "pascalCase"]
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env python3
2
+ # kate: replace-tabs on; indent-width 4;
3
+
4
+
5
+ from struct_frame import main
6
+
7
+ if __name__ == '__main__':
8
+ main()
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env python3
2
2
  # kate: replace-tabs on; indent-width 4;
3
3
 
4
- from base import version, NamingStyleC, CamelToSnakeCase, pascalCase
4
+ from struct_frame import version, NamingStyleC, CamelToSnakeCase, pascalCase
5
5
  import time
6
6
 
7
7
  StyleC = NamingStyleC()
@@ -2,8 +2,8 @@
2
2
  # kate: replace-tabs on; indent-width 4;
3
3
 
4
4
 
5
- from c_gen import FileCGen
6
- from ts_gen import FileTsGen
5
+ from struct_frame import FileCGen
6
+ from struct_frame import FileTsGen
7
7
  from proto_schema_parser.parser import Parser
8
8
  from proto_schema_parser import ast
9
9
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env python3
2
2
  # kate: replace-tabs on; indent-width 4;
3
3
 
4
- from base import version, NamingStyleC
4
+ from struct_frame import version, NamingStyleC
5
5
  import time
6
6
 
7
7
  StyleC = NamingStyleC()
@@ -1,5 +1,5 @@
1
1
  /* Automatically generated struct frame header */
2
- /* Generated by 0.0.1 at Sat Feb 8 11:10:26 2025. */
2
+ /* Generated by 0.0.1 at Sat Feb 8 11:34:13 2025. */
3
3
 
4
4
  const typed_struct = require('typed-struct')
5
5
  const ExtractType = typeof typed_struct.ExtractType;
@@ -1,6 +0,0 @@
1
- from base import version, NamingStyleC, CamelToSnakeCase, pascalCase
2
-
3
- from c_gen import FileCGen
4
- from ts_gen import FileTsGen
5
-
6
- __all__ = ["FileCGen", "FileTsGen", "version", "NamingStyleC", "CamelToSnakeCase", "pascalCase"]
File without changes
File without changes
File without changes
File without changes