generated from Matgenix/atomate2-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First commit for atomate2-turbomole.
- Loading branch information
1 parent
06e4696
commit 1bcd5a4
Showing
1,180 changed files
with
88,986 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# atomate2-addon-template | ||
# atomate2-turbomole | ||
|
||
This is an example add-on package for [atomate2](https://github.com/materialsproject/atomate2). | ||
Atomate2-turbomole is an add-on package for [atomate2](https://github.com/materialsproject/atomate2). | ||
|
||
It is heavily based on | ||
the equivalent [add-on template for pymatgen](https://github.com/materialsproject/pymatgen-addon-template). | ||
Atomate2-turbomole is built to work with Turbomole, and is built on top of open source | ||
libraries such as [pymatgen], [custodian], [jobflow] and [Turbomoleio] | ||
|
||
## License | ||
|
||
This add-on is released under the same license as atomate2, modified BSD, the full text of which can be found in this repository. | ||
This add-on is released under the same license as atomate2, modified BSD, the full text of which can | ||
be found in this repository. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Part of atomate2-turbomole package. | ||
|
||
"""Main module of the atomate2-turbomole package.""" | ||
|
||
from atomate2.turbomole._version import __version__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Part of atomate2-turbomole package. | ||
|
||
# Automatically get the version of the package | ||
# For python versions < 3.8, importlib.metadata module did not exist, | ||
# had to use importlib_metadata instead. | ||
try: # pragma: no cover | ||
from importlib.metadata import version | ||
except ModuleNotFoundError: # pragma: no cover | ||
from importlib_metadata import version # type: ignore | ||
|
||
__version__ = version("atomate2-turbomole") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"""Custodian jobs in atomate2-turbomole.""" |
Oops, something went wrong.