diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2020-04-27 10:48:59 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2020-04-27 10:48:59 +0200 |
commit | c2e6a889e338ef488fb0656a0fb6eaadbb59e463 (patch) | |
tree | 3e17f50e83f8ad809210f64a100c5d3bf210808b /setup.py | |
parent | de15854831d35dd332d2aded821191a4630b18ce (diff) | |
download | astroid-git-c2e6a889e338ef488fb0656a0fb6eaadbb59e463.tar.gz |
Add missing copyright annotations for the past releases
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1,10 +1,11 @@ #!/usr/bin/env python # Copyright (c) 2006, 2009-2010, 2012-2013 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2010-2011 Julien Jehannet <julien.jehannet@logilab.fr> -# Copyright (c) 2014-2016, 2018 Claudiu Popa <pcmanticore@gmail.com> +# Copyright (c) 2014-2016, 2018-2019 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2014 Google, Inc. # Copyright (c) 2017 Hugo <hugovk@users.noreply.github.com> -# Copyright (c) 2018 Ashley Whetter <ashley@awhetter.co.uk> +# Copyright (c) 2018-2019 Ashley Whetter <ashley@awhetter.co.uk> +# Copyright (c) 2019 Enji Cooper <yaneurabeya@gmail.com> # 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 @@ -28,8 +29,9 @@ with open(os.path.join(astroid_dir, "README.rst")) as fobj: long_description = fobj.read() -needs_pytest = set(['pytest', 'test', 'ptr']).intersection(sys.argv) -pytest_runner = ['pytest-runner'] if needs_pytest else [] +needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv) +pytest_runner = ["pytest-runner"] if needs_pytest else [] + def install(): return setup( |