sawnergy 1.0.4__tar.gz → 1.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.

Potentially problematic release.


This version of sawnergy might be problematic. Click here for more details.

Files changed (31) hide show
  1. {sawnergy-1.0.4/sawnergy.egg-info → sawnergy-1.0.5}/PKG-INFO +1 -1
  2. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/__init__.py +3 -1
  3. {sawnergy-1.0.4 → sawnergy-1.0.5/sawnergy.egg-info}/PKG-INFO +1 -1
  4. {sawnergy-1.0.4 → sawnergy-1.0.5}/LICENSE +0 -0
  5. {sawnergy-1.0.4 → sawnergy-1.0.5}/NOTICE +0 -0
  6. {sawnergy-1.0.4 → sawnergy-1.0.5}/README.md +0 -0
  7. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/embedding/SGNS_pml.py +0 -0
  8. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/embedding/SGNS_torch.py +0 -0
  9. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/embedding/__init__.py +0 -0
  10. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/embedding/embedder.py +0 -0
  11. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/logging_util.py +0 -0
  12. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/rin/__init__.py +0 -0
  13. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/rin/rin_builder.py +0 -0
  14. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/rin/rin_util.py +0 -0
  15. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/sawnergy_util.py +0 -0
  16. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/visual/__init__.py +0 -0
  17. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/visual/visualizer.py +0 -0
  18. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/visual/visualizer_util.py +0 -0
  19. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/walks/__init__.py +0 -0
  20. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/walks/walker.py +0 -0
  21. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy/walks/walker_util.py +0 -0
  22. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy.egg-info/SOURCES.txt +0 -0
  23. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy.egg-info/dependency_links.txt +0 -0
  24. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy.egg-info/requires.txt +0 -0
  25. {sawnergy-1.0.4 → sawnergy-1.0.5}/sawnergy.egg-info/top_level.txt +0 -0
  26. {sawnergy-1.0.4 → sawnergy-1.0.5}/setup.cfg +0 -0
  27. {sawnergy-1.0.4 → sawnergy-1.0.5}/tests/test_embedding.py +0 -0
  28. {sawnergy-1.0.4 → sawnergy-1.0.5}/tests/test_rin.py +0 -0
  29. {sawnergy-1.0.4 → sawnergy-1.0.5}/tests/test_storage.py +0 -0
  30. {sawnergy-1.0.4 → sawnergy-1.0.5}/tests/test_visual.py +0 -0
  31. {sawnergy-1.0.4 → sawnergy-1.0.5}/tests/test_walks.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sawnergy
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: Toolkit for transforming molecular dynamics (MD) trajectories into rich graph representations
5
5
  Home-page: https://github.com/Yehor-Mishchyriak/SAWNERGY
6
6
  Author: Yehor Mishchyriak
@@ -3,11 +3,13 @@ from . import logging_util
3
3
  from . import rin
4
4
  from . import visual
5
5
  from . import walks
6
+ from . import embedding
6
7
 
7
8
  __all__ = [
8
9
  "sawnergy_util",
9
10
  "logging_util",
10
11
  "rin",
11
12
  "visual",
12
- "walks"
13
+ "walks",
14
+ "embedding"
13
15
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sawnergy
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: Toolkit for transforming molecular dynamics (MD) trajectories into rich graph representations
5
5
  Home-page: https://github.com/Yehor-Mishchyriak/SAWNERGY
6
6
  Author: Yehor Mishchyriak
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes