valyte 0.1.3__tar.gz → 0.1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: valyte
3
- Version: 0.1.3
3
+ Version: 0.1.5
4
4
  Summary: A comprehensive CLI tool for VASP pre-processing (Supercells, K-points) and post-processing (DOS, Band Structure plotting)
5
5
  Home-page: https://github.com/nikyadav002/Valyte-Project
6
6
  Author: Nikhil
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="valyte",
5
- version="0.1.3",
5
+ version="0.1.5",
6
6
  packages=find_packages(),
7
7
  install_requires=[
8
8
  "numpy",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: valyte
3
- Version: 0.1.3
3
+ Version: 0.1.5
4
4
  Summary: A comprehensive CLI tool for VASP pre-processing (Supercells, K-points) and post-processing (DOS, Band Structure plotting)
5
5
  Home-page: https://github.com/nikyadav002/Valyte-Project
6
6
  Author: Nikhil
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -299,20 +299,20 @@ def plot_dos(dos, pdos, out="valyte_dos.png",
299
299
  # Reordered to maximize contrast between consecutive items
300
300
  palette = [
301
301
  "#4b0082", # Indigo
302
+ "#0096c7", # Cyan
302
303
  "#e63946", # Red
303
- "#2a9d8f", # Teal
304
+ "#023e8a", # Royal Blue
304
305
  "#ffb703", # Yellow
305
- "#0077b6", # Blue
306
+ "#2a9d8f", # Teal
306
307
  "#8e44ad", # Purple
307
- "#d62828", # Dark Red
308
308
  "#118ab2", # Light Blue
309
+ "#d62828", # Dark Red
310
+ "#00b4d8", # Sky Blue
309
311
  "#f4a261", # Orange
310
312
  "#003049", # Dark Blue
311
313
  "#6a994e", # Green
312
- "#023e8a", # Royal Blue
313
- "#0096c7", # Cyan
314
- "#00b4d8", # Sky Blue
315
314
  "#48cae4", # Light Cyan
315
+ "#0077b6", # Blue
316
316
  "#90e0ef", # Pale Blue
317
317
  "#ade8f4", # Very Pale Blue
318
318
  "#caf0f8" # White Blue
File without changes
File without changes
File without changes
File without changes