From 5e0e25a62881184dbdc8fac6cf4b37323fa2ae8f Mon Sep 17 00:00:00 2001 From: Alexander Hampel Date: Sun, 26 May 2024 13:57:33 -0400 Subject: [PATCH] [build] add missing init files --- python/solid_dmft/gw_embedding/__init__.py | 29 ++++++++++++++++++++++ python/solid_dmft/io_tools/__init__.py | 29 ++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 python/solid_dmft/gw_embedding/__init__.py create mode 100644 python/solid_dmft/io_tools/__init__.py diff --git a/python/solid_dmft/gw_embedding/__init__.py b/python/solid_dmft/gw_embedding/__init__.py new file mode 100644 index 00000000..ed99e4c0 --- /dev/null +++ b/python/solid_dmft/gw_embedding/__init__.py @@ -0,0 +1,29 @@ +################################################################################ +# +# solid_dmft - A versatile python wrapper to perform DFT+DMFT calculations +# utilizing the TRIQS software library +# +# Copyright (C) 2018-2020, ETH Zurich +# Copyright (C) 2024, The Simons Foundation +# authors: A. Hampel, M. Merkel, and S. Beck +# +# solid_dmft is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# solid_dmft is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. See the GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License along with +# solid_dmft (in the file COPYING.txt in this directory). If not, see +# . +# +################################################################################ + +r""" +GW embedding tools + +""" +__all__ = [] diff --git a/python/solid_dmft/io_tools/__init__.py b/python/solid_dmft/io_tools/__init__.py new file mode 100644 index 00000000..d90b8a62 --- /dev/null +++ b/python/solid_dmft/io_tools/__init__.py @@ -0,0 +1,29 @@ +################################################################################ +# +# solid_dmft - A versatile python wrapper to perform DFT+DMFT calculations +# utilizing the TRIQS software library +# +# Copyright (C) 2018-2020, ETH Zurich +# Copyright (C) 2024, The Simons Foundation +# authors: A. Hampel, M. Merkel, and S. Beck +# +# solid_dmft is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# solid_dmft is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. See the GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License along with +# solid_dmft (in the file COPYING.txt in this directory). If not, see +# . +# +################################################################################ + +r""" +IO tools + +""" +__all__ = []