struct-frame 0.0.12__tar.gz → 0.0.13__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 (28) hide show
  1. {struct_frame-0.0.12 → struct_frame-0.0.13}/PKG-INFO +1 -1
  2. {struct_frame-0.0.12 → struct_frame-0.0.13}/pyproject.toml +1 -1
  3. struct_frame-0.0.13/src/struct-frame/__init__.py +6 -0
  4. struct_frame-0.0.12/src/struct-frame/__init__.py +0 -6
  5. {struct_frame-0.0.12 → struct_frame-0.0.13}/.gitignore +0 -0
  6. {struct_frame-0.0.12 → struct_frame-0.0.13}/LICENSE +0 -0
  7. {struct_frame-0.0.12 → struct_frame-0.0.13}/README.md +0 -0
  8. {struct_frame-0.0.12 → struct_frame-0.0.13}/biostream.proto +0 -0
  9. {struct_frame-0.0.12 → struct_frame-0.0.13}/c/biostream.sf.h +0 -0
  10. {struct_frame-0.0.12 → struct_frame-0.0.13}/index.ts +0 -0
  11. {struct_frame-0.0.12 → struct_frame-0.0.13}/main.c +0 -0
  12. {struct_frame-0.0.12 → struct_frame-0.0.13}/myl_vehicle.proto +0 -0
  13. {struct_frame-0.0.12 → struct_frame-0.0.13}/package-lock.json +0 -0
  14. {struct_frame-0.0.12 → struct_frame-0.0.13}/package.json +0 -0
  15. {struct_frame-0.0.12 → struct_frame-0.0.13}/src/struct-frame/__main__.py +0 -0
  16. {struct_frame-0.0.12 → struct_frame-0.0.13}/src/struct-frame/base.py +0 -0
  17. {struct_frame-0.0.12 → struct_frame-0.0.13}/src/struct-frame/boilerplate/c/struct_frame.h +0 -0
  18. {struct_frame-0.0.12 → struct_frame-0.0.13}/src/struct-frame/boilerplate/c/struct_frame_gen.h +0 -0
  19. {struct_frame-0.0.12 → struct_frame-0.0.13}/src/struct-frame/boilerplate/c/struct_frame_parser.h +0 -0
  20. {struct_frame-0.0.12 → struct_frame-0.0.13}/src/struct-frame/boilerplate/c/struct_frame_types.h +0 -0
  21. {struct_frame-0.0.12 → struct_frame-0.0.13}/src/struct-frame/boilerplate/ts/struct_frame.ts +0 -0
  22. {struct_frame-0.0.12 → struct_frame-0.0.13}/src/struct-frame/boilerplate/ts/struct_frame_gen.ts +0 -0
  23. {struct_frame-0.0.12 → struct_frame-0.0.13}/src/struct-frame/boilerplate/ts/struct_frame_parser.ts +0 -0
  24. {struct_frame-0.0.12 → struct_frame-0.0.13}/src/struct-frame/boilerplate/ts/struct_frame_types.ts +0 -0
  25. {struct_frame-0.0.12 → struct_frame-0.0.13}/src/struct-frame/c_gen.py +0 -0
  26. {struct_frame-0.0.12 → struct_frame-0.0.13}/src/struct-frame/ts_gen.py +0 -0
  27. {struct_frame-0.0.12 → struct_frame-0.0.13}/ts/biostream.sf.ts +0 -0
  28. {struct_frame-0.0.12 → struct_frame-0.0.13}/tsconfig.json +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: struct-frame
3
- Version: 0.0.12
3
+ Version: 0.0.13
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
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "struct-frame"
7
- version = "0.0.12"
7
+ version = "0.0.13"
8
8
  authors = [
9
9
  { name="Rijesh Augustine", email="rijesh@mylonics.com" },
10
10
  ]
@@ -0,0 +1,6 @@
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"]
@@ -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
File without changes