From 3223b2c7f8394463b8212215410fdf2e44b87a92 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 11 May 2012 13:50:15 -0400 Subject: [PATCH] Ran update-copyright.py. --- h5config/__init__.py | 21 ++++++++++----------- h5config/config.py | 21 ++++++++++----------- h5config/log.py | 21 ++++++++++----------- h5config/storage/__init__.py | 21 ++++++++++----------- h5config/storage/hdf5.py | 21 ++++++++++----------- h5config/storage/yaml.py | 21 ++++++++++----------- h5config/test.py | 21 ++++++++++----------- h5config/tools.py | 21 ++++++++++----------- setup.py | 21 ++++++++++----------- 9 files changed, 90 insertions(+), 99 deletions(-) diff --git a/h5config/__init__.py b/h5config/__init__.py index 9dcf8a0..9aece4e 100644 --- a/h5config/__init__.py +++ b/h5config/__init__.py @@ -1,19 +1,18 @@ -# Copyright (C) 2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of h5config. # -# h5config 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. +# h5config 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. # -# h5config 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. +# h5config 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 h5config. If not, see . +# You should have received a copy of the GNU General Public License along with +# h5config. If not, see . from .log import get_basic_logger as _get_basic_logger diff --git a/h5config/config.py b/h5config/config.py index 09037dd..0319e02 100644 --- a/h5config/config.py +++ b/h5config/config.py @@ -1,19 +1,18 @@ -# Copyright (C) 2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of h5config. # -# h5config 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. +# h5config 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. # -# h5config 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. +# h5config 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 h5config. If not, see . +# You should have received a copy of the GNU General Public License along with +# h5config. If not, see . """The basic h5config classes """ diff --git a/h5config/log.py b/h5config/log.py index d9966bb..8969f4b 100644 --- a/h5config/log.py +++ b/h5config/log.py @@ -1,19 +1,18 @@ -# Copyright (C) 2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of h5config. # -# h5config 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. +# h5config 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. # -# h5config 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. +# h5config 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 h5config. If not, see . +# You should have received a copy of the GNU General Public License along with +# h5config. If not, see . """Tools for setting up a package logging. diff --git a/h5config/storage/__init__.py b/h5config/storage/__init__.py index 48028d4..fec6e90 100644 --- a/h5config/storage/__init__.py +++ b/h5config/storage/__init__.py @@ -1,19 +1,18 @@ -# Copyright (C) 2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of h5config. # -# h5config 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. +# h5config 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. # -# h5config 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. +# h5config 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 h5config. If not, see . +# You should have received a copy of the GNU General Public License along with +# h5config. If not, see . import os as _os import os.path as _os_path diff --git a/h5config/storage/hdf5.py b/h5config/storage/hdf5.py index 39e6418..6b8a0bc 100644 --- a/h5config/storage/hdf5.py +++ b/h5config/storage/hdf5.py @@ -1,19 +1,18 @@ -# Copyright (C) 2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of h5config. # -# h5config 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. +# h5config 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. # -# h5config 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. +# h5config 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 h5config. If not, see . +# You should have received a copy of the GNU General Public License along with +# h5config. If not, see . """HDF5 backend implementation """ diff --git a/h5config/storage/yaml.py b/h5config/storage/yaml.py index 27403d7..c186839 100644 --- a/h5config/storage/yaml.py +++ b/h5config/storage/yaml.py @@ -1,19 +1,18 @@ -# Copyright (C) 2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of h5config. # -# h5config 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. +# h5config 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. # -# h5config 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. +# h5config 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 h5config. If not, see . +# You should have received a copy of the GNU General Public License along with +# h5config. If not, see . """HDF5 backend implementation """ diff --git a/h5config/test.py b/h5config/test.py index 3a509b7..b07a98a 100644 --- a/h5config/test.py +++ b/h5config/test.py @@ -1,19 +1,18 @@ -# Copyright (C) 2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of h5config. # -# h5config 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. +# h5config 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. # -# h5config 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. +# h5config 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 h5config. If not, see . +# You should have received a copy of the GNU General Public License along with +# h5config. If not, see . """Define a test config object using all the setting types diff --git a/h5config/tools.py b/h5config/tools.py index 5843f44..49a9f9f 100644 --- a/h5config/tools.py +++ b/h5config/tools.py @@ -1,19 +1,18 @@ -# Copyright (C) 2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of h5config. # -# h5config 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. +# h5config 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. # -# h5config 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. +# h5config 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 h5config. If not, see . +# You should have received a copy of the GNU General Public License along with +# h5config. If not, see . """Tools for setting up a package using config files. diff --git a/setup.py b/setup.py index 02adc3a..d755657 100644 --- a/setup.py +++ b/setup.py @@ -1,19 +1,18 @@ -# Copyright (C) 2009-2011 W. Trevor King +# Copyright (C) 2011-2012 W. Trevor King # # This file is part of h5config. # -# h5config 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. +# h5config 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. # -# h5config 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. +# h5config 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 h5config. If not, see . +# You should have received a copy of the GNU General Public License along with +# h5config. If not, see . "Conveniently save and load config-options from HDF5 and YAML files." -- 2.26.2