coordinate-system 6.0.4__tar.gz → 6.0.5__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.
Files changed (20) hide show
  1. {coordinate_system-6.0.4/coordinate_system.egg-info → coordinate_system-6.0.5}/PKG-INFO +1 -1
  2. {coordinate_system-6.0.4 → coordinate_system-6.0.5/coordinate_system.egg-info}/PKG-INFO +1 -1
  3. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/setup.py +2 -2
  4. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/LICENSE +0 -0
  5. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/MANIFEST.in +0 -0
  6. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/README.md +0 -0
  7. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/coordinate_system/__init__.py +0 -0
  8. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/coordinate_system/curve_interpolation.py +0 -0
  9. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/coordinate_system/differential_geometry.py +0 -0
  10. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/coordinate_system/spectral_geometry.py +0 -0
  11. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/coordinate_system/u3_frame.py +0 -0
  12. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/coordinate_system/visualization.py +0 -0
  13. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/coordinate_system.egg-info/SOURCES.txt +0 -0
  14. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/coordinate_system.egg-info/dependency_links.txt +0 -0
  15. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/coordinate_system.egg-info/not-zip-safe +0 -0
  16. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/coordinate_system.egg-info/requires.txt +0 -0
  17. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/coordinate_system.egg-info/top_level.txt +0 -0
  18. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/coordinate_system_binding.cpp +0 -0
  19. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/pmsys_minimal.hpp +0 -0
  20. {coordinate_system-6.0.4 → coordinate_system-6.0.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: coordinate_system
3
- Version: 6.0.4
3
+ Version: 6.0.5
4
4
  Summary: High-performance 3D coordinate system library with unified differential geometry, quantum frame algebra, spectral transforms, and professional curvature visualization
5
5
  Home-page: https://github.com/panguojun/Coordinate-System
6
6
  Author: PanGuoJun
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: coordinate_system
3
- Version: 6.0.4
3
+ Version: 6.0.5
4
4
  Summary: High-performance 3D coordinate system library with unified differential geometry, quantum frame algebra, spectral transforms, and professional curvature visualization
5
5
  Home-page: https://github.com/panguojun/Coordinate-System
6
6
  Author: PanGuoJun
@@ -2,7 +2,7 @@
2
2
  setup.py - Cross-platform setup for coordinate_system package
3
3
 
4
4
  Author: PanGuoJun
5
- Version: 6.0.4
5
+ Version: 6.0.5
6
6
  License: MIT
7
7
  """
8
8
 
@@ -69,7 +69,7 @@ ext_modules = [
69
69
 
70
70
  setup(
71
71
  name='coordinate_system',
72
- version='6.0.4',
72
+ version='6.0.5',
73
73
  packages=find_packages(),
74
74
  ext_modules=ext_modules, # Add extension modules
75
75