• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1Copyright 2017- Paul Ganssle <paul@ganssle.io>
2Copyright 2017- dateutil contributors (see AUTHORS file)
3
4   Licensed under the Apache License, Version 2.0 (the "License");
5   you may not use this file except in compliance with the License.
6   You may obtain a copy of the License at
7
8       http://www.apache.org/licenses/LICENSE-2.0
9
10   Unless required by applicable law or agreed to in writing, software
11   distributed under the License is distributed on an "AS IS" BASIS,
12   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   See the License for the specific language governing permissions and
14   limitations under the License.
15
16The above license applies to all contributions after 2017-12-01, as well as
17all contributions that have been re-licensed (see AUTHORS file for the list of
18contributors who have re-licensed their code).
19--------------------------------------------------------------------------------
20dateutil - Extensions to the standard Python datetime module.
21
22Copyright (c) 2003-2011 - Gustavo Niemeyer <gustavo@niemeyer.net>
23Copyright (c) 2012-2014 - Tomi Pieviläinen <tomi.pievilainen@iki.fi>
24Copyright (c) 2014-2016 - Yaron de Leeuw <me@jarondl.net>
25Copyright (c) 2015-     - Paul Ganssle <paul@ganssle.io>
26Copyright (c) 2015-     - dateutil contributors (see AUTHORS file)
27
28All rights reserved.
29
30Redistribution and use in source and binary forms, with or without
31modification, are permitted provided that the following conditions are met:
32
33    * Redistributions of source code must retain the above copyright notice,
34      this list of conditions and the following disclaimer.
35    * Redistributions in binary form must reproduce the above copyright notice,
36      this list of conditions and the following disclaimer in the documentation
37      and/or other materials provided with the distribution.
38    * Neither the name of the copyright holder nor the names of its
39      contributors may be used to endorse or promote products derived from
40      this software without specific prior written permission.
41
42THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
43"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
44LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
45A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
46CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
47EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
48PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
49PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
50LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
51NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
52SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53
54The above BSD License Applies to all code, even that also covered by Apache 2.0.