Skip to content

Commit

Permalink
Fix copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Sep 28, 2024
1 parent 3de9d29 commit d7c33c3
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 116 deletions.
3 changes: 0 additions & 3 deletions pysqa/utils/basic.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# coding: utf-8
# Copyright (c) Jan Janssen

import os
from typing import List, Optional, Tuple, Union

Expand Down
3 changes: 0 additions & 3 deletions pysqa/utils/core.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# coding: utf-8
# Copyright (c) Jan Janssen

import getpass
import importlib
import os
Expand Down
15 changes: 0 additions & 15 deletions pysqa/wrapper/abstract.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,10 @@
# 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 os
from abc import ABC, abstractmethod
from typing import List, Optional, Union

import pandas
from jinja2 import Template

__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__ = "[email protected]"
__status__ = "production"
__date__ = "Aug 15, 2022"


class SchedulerCommands(ABC):
@property
Expand Down
1 change: 0 additions & 1 deletion pysqa/wrapper/flux.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# coding: utf-8
import os
from typing import List, Optional, Union

Expand Down
15 changes: 0 additions & 15 deletions pysqa/wrapper/gent.py
Original file line number Diff line number Diff line change
@@ -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 pandas

from pysqa.wrapper.slurm import SlurmCommands
from pysqa.wrapper.slurm import template as template_slurm

__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__ = "[email protected]"
__status__ = "development"
__date__ = "Feb 9, 2019"

template = template_slurm


Expand Down
16 changes: 0 additions & 16 deletions pysqa/wrapper/lsf.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# 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 os
from typing import List, Optional, Union

Expand All @@ -10,18 +6,6 @@

from pysqa.wrapper.abstract 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__ = "[email protected]"
__status__ = "development"
__date__ = "Feb 9, 2019"


template = """\
#!/bin/bash
#BSUB -q queue
Expand Down
16 changes: 0 additions & 16 deletions pysqa/wrapper/moab.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,10 @@
# 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 os
from typing import List, Optional, Union

from jinja2 import Template

from pysqa.wrapper.abstract 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__ = "[email protected]"
__status__ = "development"
__date__ = "Feb 9, 2019"


template = """\
#!/bin/bash
#MSUB -N {{job_name}}
Expand Down
16 changes: 0 additions & 16 deletions pysqa/wrapper/sge.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# 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 os
from typing import List, Optional, Union

Expand All @@ -11,18 +7,6 @@

from pysqa.wrapper.abstract 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__ = "[email protected]"
__status__ = "production"
__date__ = "Feb 9, 2019"


template = """\
#!/bin/bash
#$ -N {{job_name}}
Expand Down
16 changes: 0 additions & 16 deletions pysqa/wrapper/slurm.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# 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 os
from typing import List, Optional, Union

Expand All @@ -10,18 +6,6 @@

from pysqa.wrapper.abstract 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__ = "[email protected]"
__status__ = "development"
__date__ = "Feb 9, 2019"


template = """\
#!/bin/bash
#SBATCH --output=time.out
Expand Down
15 changes: 0 additions & 15 deletions pysqa/wrapper/torque.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# 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 os
import re
from typing import List, Optional, Union
Expand All @@ -11,17 +7,6 @@

from pysqa.wrapper.abstract 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__ = "[email protected]"
__status__ = "development"
__date__ = "Feb 9, 2019"

template = """\
#!/bin/bash
#PBS -l ncpus={{cores}}
Expand Down

0 comments on commit d7c33c3

Please sign in to comment.