-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #339 from pyiron/copyright
Clean up copyright
- Loading branch information
Showing
12 changed files
with
0 additions
and
125 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
from typing import Optional | ||
|
||
import pandas | ||
|
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,6 +1,3 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import getpass | ||
import json | ||
import os | ||
|
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,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__ = "[email protected]" | ||
__status__ = "production" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
class QueueAdapter(object): | ||
""" | ||
|
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,6 +1,3 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import getpass | ||
import importlib | ||
import os | ||
|
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,4 +1,3 @@ | ||
# coding: utf-8 | ||
import pandas | ||
from flux.job import JobID | ||
|
||
|
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,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__ = "[email protected]" | ||
__status__ = "production" | ||
__date__ = "Aug 15, 2022" | ||
|
||
|
||
class SchedulerCommands(ABC): | ||
@property | ||
|
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,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__ = "[email protected]" | ||
__status__ = "development" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
class GentCommands(SlurmCommands): | ||
@staticmethod | ||
|
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,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__ = "[email protected]" | ||
__status__ = "development" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
class LsfCommands(SchedulerCommands): | ||
@property | ||
|
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,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__ = "[email protected]" | ||
__status__ = "development" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
class MoabCommands(SchedulerCommands): | ||
@property | ||
|
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,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__ = "[email protected]" | ||
__status__ = "production" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
class SunGridEngineCommands(SchedulerCommands): | ||
@property | ||
|
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,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__ = "[email protected]" | ||
__status__ = "development" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
class SlurmCommands(SchedulerCommands): | ||
@property | ||
|
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,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__ = "[email protected]" | ||
__status__ = "development" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
class TorqueCommands(SchedulerCommands): | ||
@property | ||
|