kim-tools 0.2.0b0__py3-none-any.whl
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.
- kim_tools/__init__.py +14 -0
- kim_tools/aflow_util/__init__.py +4 -0
- kim_tools/aflow_util/core.py +1782 -0
- kim_tools/aflow_util/data/README_PROTO.TXT +3241 -0
- kim_tools/ase/__init__.py +4 -0
- kim_tools/ase/core.py +749 -0
- kim_tools/kimunits.py +162 -0
- kim_tools/symmetry_util/__init__.py +4 -0
- kim_tools/symmetry_util/core.py +552 -0
- kim_tools/symmetry_util/data/possible_primitive_shifts.json +1 -0
- kim_tools/symmetry_util/data/primitive_GENPOS_ops.json +1 -0
- kim_tools/symmetry_util/data/space_groups_for_each_bravais_lattice.json +179 -0
- kim_tools/symmetry_util/data/wyck_pos_xform_under_normalizer.json +1344 -0
- kim_tools/symmetry_util/data/wyckoff_multiplicities.json +2193 -0
- kim_tools/symmetry_util/data/wyckoff_sets.json +232 -0
- kim_tools/test_driver/__init__.py +4 -0
- kim_tools/test_driver/core.py +1932 -0
- kim_tools/vc/__init__.py +4 -0
- kim_tools/vc/core.py +397 -0
- kim_tools-0.2.0b0.dist-info/METADATA +32 -0
- kim_tools-0.2.0b0.dist-info/RECORD +24 -0
- kim_tools-0.2.0b0.dist-info/WHEEL +5 -0
- kim_tools-0.2.0b0.dist-info/licenses/LICENSE.CDDL +380 -0
- kim_tools-0.2.0b0.dist-info/top_level.txt +1 -0
kim_tools/__init__.py
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
__version__ = "0.2.0b0"
|
2
|
+
|
3
|
+
from .aflow_util import *
|
4
|
+
from .aflow_util import __all__ as aflow_all
|
5
|
+
from .ase import *
|
6
|
+
from .ase import __all__ as ase_all
|
7
|
+
from .symmetry_util import *
|
8
|
+
from .symmetry_util import __all__ as symmetry_all
|
9
|
+
from .test_driver import *
|
10
|
+
from .test_driver import __all__ as test_driver_all
|
11
|
+
from .vc import *
|
12
|
+
from .vc import __all__ as vc_all
|
13
|
+
|
14
|
+
__all__ = test_driver_all + aflow_all + symmetry_all + ase_all + vc_all
|