From a0d85cbf1a16134adad5ea1e1cee9697a8332cc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Jan=C3=9Fen?= Date: Sat, 28 Sep 2024 16:12:34 +0200 Subject: [PATCH] Clean up copyright --- pysqa/ext/modular.py | 2 -- pysqa/ext/remote.py | 3 --- pysqa/queueadapter.py | 11 ----------- pysqa/utils/basic.py | 3 --- pysqa/wrapper/flux.py | 1 - pysqa/wrapper/generic.py | 15 --------------- pysqa/wrapper/gent.py | 15 --------------- pysqa/wrapper/lsf.py | 15 --------------- pysqa/wrapper/moab.py | 15 --------------- pysqa/wrapper/sge.py | 15 --------------- pysqa/wrapper/slurm.py | 15 --------------- pysqa/wrapper/torque.py | 15 --------------- 12 files changed, 125 deletions(-) diff --git a/pysqa/ext/modular.py b/pysqa/ext/modular.py index 5318d7b..6760143 100644 --- a/pysqa/ext/modular.py +++ b/pysqa/ext/modular.py @@ -1,5 +1,3 @@ -# coding: utf-8 -# Copyright (c) Jan Janssen from typing import Optional import pandas diff --git a/pysqa/ext/remote.py b/pysqa/ext/remote.py index 90c778d..266b8f2 100644 --- a/pysqa/ext/remote.py +++ b/pysqa/ext/remote.py @@ -1,6 +1,3 @@ -# coding: utf-8 -# Copyright (c) Jan Janssen - import getpass import json import os diff --git a/pysqa/queueadapter.py b/pysqa/queueadapter.py index 2282328..8216943 100644 --- a/pysqa/queueadapter.py +++ b/pysqa/queueadapter.py @@ -1,6 +1,3 @@ -# coding: utf-8 -# Copyright (c) Jan Janssen - import os from typing import List, Optional @@ -11,14 +8,6 @@ from pysqa.utils.config import read_config from pysqa.utils.execute import execute_command -__author__ = "Jan Janssen" -__copyright__ = "Copyright 2019, Jan Janssen" -__version__ = "0.0.3" -__maintainer__ = "Jan Janssen" -__email__ = "janssen@mpie.de" -__status__ = "production" -__date__ = "Feb 9, 2019" - class QueueAdapter(object): """ diff --git a/pysqa/utils/basic.py b/pysqa/utils/basic.py index 78bdc86..b4c1b30 100644 --- a/pysqa/utils/basic.py +++ b/pysqa/utils/basic.py @@ -1,6 +1,3 @@ -# coding: utf-8 -# Copyright (c) Jan Janssen - import getpass import importlib import os diff --git a/pysqa/wrapper/flux.py b/pysqa/wrapper/flux.py index 63abe72..0f03734 100644 --- a/pysqa/wrapper/flux.py +++ b/pysqa/wrapper/flux.py @@ -1,4 +1,3 @@ -# coding: utf-8 import pandas from flux.job import JobID diff --git a/pysqa/wrapper/generic.py b/pysqa/wrapper/generic.py index 5e72d20..dc46849 100644 --- a/pysqa/wrapper/generic.py +++ b/pysqa/wrapper/generic.py @@ -1,22 +1,7 @@ -# 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. - from abc import ABC, abstractmethod import pandas -__author__ = "Niklas Siemer" -__copyright__ = ( - "Copyright 2022, Max-Planck-Institut für Eisenforschung GmbH - " - "Computational Materials Design (CM) Department" -) -__version__ = "1.0" -__maintainer__ = "Niklas Siemer" -__email__ = "siemer@mpie.de" -__status__ = "production" -__date__ = "Aug 15, 2022" - class SchedulerCommands(ABC): @property diff --git a/pysqa/wrapper/gent.py b/pysqa/wrapper/gent.py index 20ee4ff..54f20d2 100644 --- a/pysqa/wrapper/gent.py +++ b/pysqa/wrapper/gent.py @@ -1,22 +1,7 @@ -# 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. - import pandas from pysqa.wrapper.slurm import SlurmCommands -__author__ = "Jan Janssen" -__copyright__ = ( - "Copyright 2019, Max-Planck-Institut für Eisenforschung GmbH - " - "Computational Materials Design (CM) Department" -) -__version__ = "1.0" -__maintainer__ = "Jan Janssen" -__email__ = "janssen@mpie.de" -__status__ = "development" -__date__ = "Feb 9, 2019" - class GentCommands(SlurmCommands): @staticmethod diff --git a/pysqa/wrapper/lsf.py b/pysqa/wrapper/lsf.py index b3762bc..2756d80 100644 --- a/pysqa/wrapper/lsf.py +++ b/pysqa/wrapper/lsf.py @@ -1,22 +1,7 @@ -# 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. - import pandas from pysqa.wrapper.generic import SchedulerCommands -__author__ = "Jan Janssen" -__copyright__ = ( - "Copyright 2019, Max-Planck-Institut für Eisenforschung GmbH - " - "Computational Materials Design (CM) Department" -) -__version__ = "1.0" -__maintainer__ = "Jan Janssen" -__email__ = "janssen@mpie.de" -__status__ = "development" -__date__ = "Feb 9, 2019" - class LsfCommands(SchedulerCommands): @property diff --git a/pysqa/wrapper/moab.py b/pysqa/wrapper/moab.py index 6105f13..7164a44 100644 --- a/pysqa/wrapper/moab.py +++ b/pysqa/wrapper/moab.py @@ -1,20 +1,5 @@ -# 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. - from pysqa.wrapper.generic import SchedulerCommands -__author__ = "Jan Janssen" -__copyright__ = ( - "Copyright 2019, Max-Planck-Institut für Eisenforschung GmbH - " - "Computational Materials Design (CM) Department" -) -__version__ = "1.0" -__maintainer__ = "Jan Janssen" -__email__ = "janssen@mpie.de" -__status__ = "development" -__date__ = "Feb 9, 2019" - class MoabCommands(SchedulerCommands): @property diff --git a/pysqa/wrapper/sge.py b/pysqa/wrapper/sge.py index de67bca..0db5c3b 100644 --- a/pysqa/wrapper/sge.py +++ b/pysqa/wrapper/sge.py @@ -1,23 +1,8 @@ -# 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. - import defusedxml.ElementTree as ETree import pandas from pysqa.wrapper.generic import SchedulerCommands -__author__ = "Jan Janssen" -__copyright__ = ( - "Copyright 2019, Max-Planck-Institut für Eisenforschung GmbH - " - "Computational Materials Design (CM) Department" -) -__version__ = "1.0" -__maintainer__ = "Jan Janssen" -__email__ = "janssen@mpie.de" -__status__ = "production" -__date__ = "Feb 9, 2019" - class SunGridEngineCommands(SchedulerCommands): @property diff --git a/pysqa/wrapper/slurm.py b/pysqa/wrapper/slurm.py index 9395c6b..a8378eb 100644 --- a/pysqa/wrapper/slurm.py +++ b/pysqa/wrapper/slurm.py @@ -1,22 +1,7 @@ -# 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. - import pandas from pysqa.wrapper.generic import SchedulerCommands -__author__ = "Jan Janssen" -__copyright__ = ( - "Copyright 2019, Max-Planck-Institut für Eisenforschung GmbH - " - "Computational Materials Design (CM) Department" -) -__version__ = "1.0" -__maintainer__ = "Jan Janssen" -__email__ = "janssen@mpie.de" -__status__ = "development" -__date__ = "Feb 9, 2019" - class SlurmCommands(SchedulerCommands): @property diff --git a/pysqa/wrapper/torque.py b/pysqa/wrapper/torque.py index 07a0125..5f8c959 100644 --- a/pysqa/wrapper/torque.py +++ b/pysqa/wrapper/torque.py @@ -1,24 +1,9 @@ -# 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. - import re import pandas from pysqa.wrapper.generic import SchedulerCommands -__author__ = "Jan Janssen" -__copyright__ = ( - "Copyright 2019, Max-Planck-Institut für Eisenforschung GmbH - " - "Computational Materials Design (CM) Department" -) -__version__ = "1.0" -__maintainer__ = "Jan Janssen" -__email__ = "janssen@mpie.de" -__status__ = "development" -__date__ = "Feb 9, 2019" - class TorqueCommands(SchedulerCommands): @property