From 9a259dca77ad30dad64ff17161c64e1b63fee46f Mon Sep 17 00:00:00 2001 From: Mike Shoup Date: Tue, 1 Jan 2019 13:17:52 -0700 Subject: [PATCH] Use the correct license disclaimer --- setup.py | 15 +++++++++++++++ src/synthale/cli.py | 12 ++++++------ src/synthale/convert.py | 12 ++++++------ src/synthale/markdown.py | 12 ++++++------ src/synthale/recipes.py | 12 ++++++------ tests/conftest.py | 12 ++++++------ tests/test_cli.py | 12 ++++++------ tests/test_convert.py | 12 ++++++------ tests/test_markdown.py | 12 ++++++------ tests/test_recipes.py | 12 ++++++------ 10 files changed, 69 insertions(+), 54 deletions(-) diff --git a/setup.py b/setup.py index a5054b7..202d422 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,18 @@ +# Copyright (C) 2019 Mike Shoup +# +# This program 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. +# +# This program 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 this program. If not, see . + from setuptools import find_packages, setup install_requires = [ diff --git a/src/synthale/cli.py b/src/synthale/cli.py index 38cb9ea..ba8b600 100644 --- a/src/synthale/cli.py +++ b/src/synthale/cli.py @@ -3,17 +3,17 @@ # Copyright (C) 2019 Mike Shoup # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. +# 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. # # This program 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 Affero General Public License for more details. +# GNU General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . import click diff --git a/src/synthale/convert.py b/src/synthale/convert.py index 13961ac..b5a7f5a 100644 --- a/src/synthale/convert.py +++ b/src/synthale/convert.py @@ -8,17 +8,17 @@ units are the defaults used in the BeerXML format, and as a result, in # Copyright (C) 2019 Mike Shoup # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. +# 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. # # This program 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 Affero General Public License for more details. +# GNU General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . def liters(liters, format_spec=''): diff --git a/src/synthale/markdown.py b/src/synthale/markdown.py index 7513c46..a706c8d 100644 --- a/src/synthale/markdown.py +++ b/src/synthale/markdown.py @@ -3,17 +3,17 @@ # Copyright (C) 2019 Mike Shoup # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. +# 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. # # This program 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 Affero General Public License for more details. +# GNU General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . import re diff --git a/src/synthale/recipes.py b/src/synthale/recipes.py index 39fc47b..67a8377 100644 --- a/src/synthale/recipes.py +++ b/src/synthale/recipes.py @@ -3,17 +3,17 @@ # Copyright (C) 2019 Mike Shoup # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. +# 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. # # This program 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 Affero General Public License for more details. +# GNU General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . import os import re diff --git a/tests/conftest.py b/tests/conftest.py index f7aa05b..833abc6 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -3,17 +3,17 @@ # Copyright (C) 2019 Mike Shoup # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. +# 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. # # This program 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 Affero General Public License for more details. +# GNU General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . import pytest import pybeerxml diff --git a/tests/test_cli.py b/tests/test_cli.py index ad7c13d..1bf9920 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -3,17 +3,17 @@ # Copyright (C) 2019 Mike Shoup # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. +# 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. # # This program 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 Affero General Public License for more details. +# GNU General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . from click.testing import CliRunner diff --git a/tests/test_convert.py b/tests/test_convert.py index 9e457db..d05647e 100644 --- a/tests/test_convert.py +++ b/tests/test_convert.py @@ -3,17 +3,17 @@ # Copyright (C) 2019 Mike Shoup # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. +# 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. # # This program 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 Affero General Public License for more details. +# GNU General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . from synthale import convert diff --git a/tests/test_markdown.py b/tests/test_markdown.py index 610f7c7..18c8072 100644 --- a/tests/test_markdown.py +++ b/tests/test_markdown.py @@ -3,17 +3,17 @@ # Copyright (C) 2019 Mike Shoup # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. +# 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. # # This program 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 Affero General Public License for more details. +# GNU General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . import pytest diff --git a/tests/test_recipes.py b/tests/test_recipes.py index 151895d..ccb8b06 100644 --- a/tests/test_recipes.py +++ b/tests/test_recipes.py @@ -3,17 +3,17 @@ # Copyright (C) 2019 Mike Shoup # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. +# 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. # # This program 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 Affero General Public License for more details. +# GNU General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . import pybeerxml