csslib 1.2__tar.gz → 1.2.1__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 (28) hide show
  1. {csslib-1.2/src/csslib.egg-info → csslib-1.2.1}/PKG-INFO +2 -2
  2. {csslib-1.2 → csslib-1.2.1}/README.md +1 -1
  3. {csslib-1.2 → csslib-1.2.1}/pyproject.toml +2 -2
  4. {csslib-1.2 → csslib-1.2.1/src/csslib.egg-info}/PKG-INFO +2 -2
  5. {csslib-1.2 → csslib-1.2.1}/LICENCE +0 -0
  6. {csslib-1.2 → csslib-1.2.1}/setup.cfg +0 -0
  7. {csslib-1.2 → csslib-1.2.1}/src/csslib/__init__.py +0 -0
  8. {csslib-1.2 → csslib-1.2.1}/src/csslib/config.py +0 -0
  9. {csslib-1.2 → csslib-1.2.1}/src/csslib/css.py +0 -0
  10. {csslib-1.2 → csslib-1.2.1}/src/csslib/exceptions.py +0 -0
  11. {csslib-1.2 → csslib-1.2.1}/src/csslib/logging_.py +0 -0
  12. {csslib-1.2 → csslib-1.2.1}/src/csslib/tools/__init__.py +0 -0
  13. {csslib-1.2 → csslib-1.2.1}/src/csslib/tools/calculations/__init__.py +0 -0
  14. {csslib-1.2 → csslib-1.2.1}/src/csslib/tools/calculations/calculator.py +0 -0
  15. {csslib-1.2 → csslib-1.2.1}/src/csslib/tools/calculations/cmd.py +0 -0
  16. {csslib-1.2 → csslib-1.2.1}/src/csslib/tools/calculations/inputs.py +0 -0
  17. {csslib-1.2 → csslib-1.2.1}/src/csslib/tools/calculations/parser.py +0 -0
  18. {csslib-1.2 → csslib-1.2.1}/src/csslib/tools/calculations/remote.py +0 -0
  19. {csslib-1.2 → csslib-1.2.1}/src/csslib/tools/calculations/scheduler.py +0 -0
  20. {csslib-1.2 → csslib-1.2.1}/src/csslib/tools/calculations/worker.py +0 -0
  21. {csslib-1.2 → csslib-1.2.1}/src/csslib/tools/dataloader.py +0 -0
  22. {csslib-1.2 → csslib-1.2.1}/src/csslib/tools/filters.py +0 -0
  23. {csslib-1.2 → csslib-1.2.1}/src/csslib/tools/transformations.py +0 -0
  24. {csslib-1.2 → csslib-1.2.1}/src/csslib/tools/visualization.py +0 -0
  25. {csslib-1.2 → csslib-1.2.1}/src/csslib.egg-info/SOURCES.txt +0 -0
  26. {csslib-1.2 → csslib-1.2.1}/src/csslib.egg-info/dependency_links.txt +0 -0
  27. {csslib-1.2 → csslib-1.2.1}/src/csslib.egg-info/requires.txt +0 -0
  28. {csslib-1.2 → csslib-1.2.1}/src/csslib.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: csslib
3
- Version: 1.2
3
+ Version: 1.2.1
4
4
  Summary: CSSlib is an open-source code for building configuration search space (CSS) of disordered crystals, loading of the CSS dataset obtained, local/remote MPI or SLURM calculations and data visualization.
5
5
  Author: A.V. Krautsou, A.A. Solovykh
6
6
  Classifier: Programming Language :: Python :: 3
@@ -27,7 +27,7 @@ Dynamic: license-file
27
27
  ![License](https://img.shields.io/github/license/AIRI-Institute/CSSlib?style=flat&logo=opensourceinitiative&logoColor=white&color=blue) ![Version](https://img.shields.io/badge/version-1.2-orange.svg?cacheSeconds=2592000)
28
28
 
29
29
  <p align="center">
30
- <img src="./logo.jpg" width="30%" title="CSSlib" alt="CSSlib"/>
30
+ <img src="./logo.jpg" onerror="this.onerror=null; this.src='https://github.com/AIRI-Institute/CSSlib/blob/main/logo.jpg';" width="30%" title="CSSlib" alt="CSSlib"/>
31
31
  </p>
32
32
 
33
33
  CSSlib is an open-source code for building configuration search space (CSS) of disordered crystals, loading of the CSS dataset obtained, local/remote MPI or SLURM calculations and data visualization.
@@ -2,7 +2,7 @@
2
2
  ![License](https://img.shields.io/github/license/AIRI-Institute/CSSlib?style=flat&logo=opensourceinitiative&logoColor=white&color=blue) ![Version](https://img.shields.io/badge/version-1.2-orange.svg?cacheSeconds=2592000)
3
3
 
4
4
  <p align="center">
5
- <img src="./logo.jpg" width="30%" title="CSSlib" alt="CSSlib"/>
5
+ <img src="./logo.jpg" onerror="this.onerror=null; this.src='https://github.com/AIRI-Institute/CSSlib/blob/main/logo.jpg';" width="30%" title="CSSlib" alt="CSSlib"/>
6
6
  </p>
7
7
 
8
8
  CSSlib is an open-source code for building configuration search space (CSS) of disordered crystals, loading of the CSS dataset obtained, local/remote MPI or SLURM calculations and data visualization.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "csslib"
3
- version = "1.2"
3
+ version = "1.2.1"
4
4
  authors = [
5
5
  { name="A.V. Krautsou" },
6
6
  { name="A.A. Solovykh" },
@@ -38,4 +38,4 @@ espresso = [
38
38
  ]
39
39
  all = [
40
40
  {include-group = "espresso"},
41
- ]
41
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: csslib
3
- Version: 1.2
3
+ Version: 1.2.1
4
4
  Summary: CSSlib is an open-source code for building configuration search space (CSS) of disordered crystals, loading of the CSS dataset obtained, local/remote MPI or SLURM calculations and data visualization.
5
5
  Author: A.V. Krautsou, A.A. Solovykh
6
6
  Classifier: Programming Language :: Python :: 3
@@ -27,7 +27,7 @@ Dynamic: license-file
27
27
  ![License](https://img.shields.io/github/license/AIRI-Institute/CSSlib?style=flat&logo=opensourceinitiative&logoColor=white&color=blue) ![Version](https://img.shields.io/badge/version-1.2-orange.svg?cacheSeconds=2592000)
28
28
 
29
29
  <p align="center">
30
- <img src="./logo.jpg" width="30%" title="CSSlib" alt="CSSlib"/>
30
+ <img src="./logo.jpg" onerror="this.onerror=null; this.src='https://github.com/AIRI-Institute/CSSlib/blob/main/logo.jpg';" width="30%" title="CSSlib" alt="CSSlib"/>
31
31
  </p>
32
32
 
33
33
  CSSlib is an open-source code for building configuration search space (CSS) of disordered crystals, loading of the CSS dataset obtained, local/remote MPI or SLURM calculations and data visualization.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes