diff --git a/chess/__init__.py b/chess/__init__.py index b87e3cbec..a41f38501 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -1,19 +1,3 @@ -# This file is part of the python-chess library. -# Copyright (C) 2012-2021 Niklas Fiekas -# -# 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 . - """ A chess library with move generation and validation, Polyglot opening book probing, PGN reading and writing, diff --git a/chess/engine.py b/chess/engine.py index cab9d5d2c..37b7715fd 100644 --- a/chess/engine.py +++ b/chess/engine.py @@ -1,19 +1,3 @@ -# This file is part of the python-chess library. -# Copyright (C) 2012-2021 Niklas Fiekas -# -# 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 __future__ import annotations import abc diff --git a/chess/gaviota.py b/chess/gaviota.py index 454949795..c2439728f 100644 --- a/chess/gaviota.py +++ b/chess/gaviota.py @@ -1,20 +1,3 @@ -# This file is part of the python-chess library. -# Copyright (C) 2015 Jean-Noël Avila -# Copyright (C) 2015-2021 Niklas Fiekas -# -# 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 __future__ import annotations import ctypes diff --git a/chess/pgn.py b/chess/pgn.py index f6783585c..edeab84a3 100644 --- a/chess/pgn.py +++ b/chess/pgn.py @@ -1,19 +1,3 @@ -# This file is part of the python-chess library. -# Copyright (C) 2012-2021 Niklas Fiekas -# -# 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 __future__ import annotations import abc diff --git a/chess/polyglot.py b/chess/polyglot.py index 39270c129..7d9e425ea 100644 --- a/chess/polyglot.py +++ b/chess/polyglot.py @@ -1,19 +1,3 @@ -# This file is part of the python-chess library. -# Copyright (C) 2012-2021 Niklas Fiekas -# -# 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 __future__ import annotations import chess diff --git a/chess/svg.py b/chess/svg.py index 94ae21569..3e034ce30 100644 --- a/chess/svg.py +++ b/chess/svg.py @@ -1,23 +1,3 @@ -# This file is part of the python-chess library. -# Copyright (C) 2016-2021 Niklas Fiekas -# -# 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 . - -# Piece vector graphics are copyright (C) Colin M.L. Burnett -# and also licensed under the -# GNU General Public License. - from __future__ import annotations import math diff --git a/chess/syzygy.py b/chess/syzygy.py index 2d835b200..fd9d80890 100644 --- a/chess/syzygy.py +++ b/chess/syzygy.py @@ -1,19 +1,3 @@ -# This file is part of the python-chess library. -# Copyright (C) 2012-2021 Niklas Fiekas -# -# 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 __future__ import annotations import collections diff --git a/chess/variant.py b/chess/variant.py index 31cdea287..e81d0aa72 100644 --- a/chess/variant.py +++ b/chess/variant.py @@ -1,19 +1,3 @@ -# This file is part of the python-chess library. -# Copyright (C) 2016-2021 Niklas Fiekas -# -# 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 __future__ import annotations import chess diff --git a/setup.py b/setup.py index bc6a8af51..09675868e 100755 --- a/setup.py +++ b/setup.py @@ -1,21 +1,5 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -# -# This file is part of the python-chess library. -# Copyright (C) 2012-2021 Niklas Fiekas -# -# 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 . import os import platform diff --git a/test.py b/test.py index b109fabf8..d25dd75ad 100755 --- a/test.py +++ b/test.py @@ -1,20 +1,4 @@ #!/usr/bin/env python3 -# -# This file is part of the python-chess library. -# Copyright (C) 2012-2021 Niklas Fiekas -# -# 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 . import asyncio import copy