diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2016-07-19 19:14:27 +0300 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2016-07-19 19:14:27 +0300 |
commit | 461e0161dda5bb8ce1f2817adcb6379f6a9e7b19 (patch) | |
tree | c87ef5baa45dbd4ad81724d05e0eed167e20ae54 /setup.py | |
parent | c61b992458e1b1b3d955abf11ac3b75c98a11503 (diff) | |
download | astroid-git-461e0161dda5bb8ce1f2817adcb6379f6a9e7b19.tar.gz |
Keep a consistent copyright notice across the board.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 22 |
1 files changed, 5 insertions, 17 deletions
@@ -1,22 +1,10 @@ #!/usr/bin/env python +# Copyright (c) 2006-2016 LOGILAB S.A. (Paris, FRANCE) +# http://www.logilab.fr/ -- mailto:contact@logilab.fr +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER + # pylint: disable=W0404,W0622,W0704,W0613 -# copyright 2003-2013 LOGILAB S.A. (Paris, FRANCE), all rights reserved. -# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr -# -# This file is part of astroid. -# -# astroid is free software: you can redistribute it and/or modify it under -# the terms of the GNU Lesser General Public License as published by the Free -# Software Foundation, either version 2.1 of the License, or (at your option) any -# later version. -# -# astroid 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 Lesser General Public License for more -# details. -# -# You should have received a copy of the GNU Lesser General Public License along -# with astroid. If not, see <http://www.gnu.org/licenses/>. """Setup script for astroid.""" import os from setuptools import setup, find_packages |