Source code for pyiron_atomistics.toolkit
# coding: utf-8
# Copyright (c) Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department
# Distributed under the terms of "New BSD License", see the LICENSE file.
"""
A toolkit for managing extensions to the project from atomistics.
"""
from pyiron_base import JOB_CLASS_DICT, JobFactoryCore, Project, Toolkit
from pyiron_atomistics.atomistics.structure.factory import StructureFactory
__author__ = "Liam Huber"
__copyright__ = (
"Copyright 2021, Max-Planck-Institut für Eisenforschung GmbH - "
"Computational Materials Design (CM) Department"
)
__version__ = "1.0"
__maintainer__ = "Liam Huber"
__email__ = "huber@mpie.de"
__status__ = "production"
__date__ = "Sep 7, 2021"
[docs]
class JobFactory(JobFactoryCore):
@property
def _job_class_dict(self) -> dict:
return JOB_CLASS_DICT