forked from dune-community/dune-gdt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pylicense-cpp.py
More file actions
46 lines (44 loc) · 1.49 KB
/
.pylicense-cpp.py
File metadata and controls
46 lines (44 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# ~~~
# This file is part of the dune-gdt project:
# https://zivgitlab.uni-muenster.de/ag-ohlberger/dune-community/dune-gdt
# Copyright 2010-2021 dune-gdt developers and contributors. All rights reserved.
# License: Dual licensed as BSD 2-Clause License (http://opensource.org/licenses/BSD-2-Clause)
# or GPL-2.0+ (http://opensource.org/licenses/gpl-license)
# with "runtime exception" (http://www.dune-project.org/license.html)
# Authors:
# Felix Schindler (2022)
# René Fritze (2018 - 2019, 2022)
# Tobias Leibner (2019 - 2021)
# ~~~
name = "This file is part of the dune-gdt project:"
url = "https://zivgitlab.uni-muenster.de/ag-ohlberger/dune-community/dune-gdt"
copyright_statement = (
"Copyright 2010-2021 dune-gdt developers and contributors. All rights reserved."
)
license = """Dual licensed as BSD 2-Clause License (http://opensource.org/licenses/BSD-2-Clause)
or GPL-2.0+ (http://opensource.org/licenses/gpl-license)
with "runtime exception" (http://www.dune-project.org/license.html)"""
prefix = "//"
include_patterns = (
"*.cc",
"*.cxx",
"*.hh",
"*.hxx",
"*cmake_config.h.in",
"*headercheck.cpp.in",
"*config.h.cmake",
"*version.hh.in",
"*.pbh",
"*.tpl",
)
exclude_patterns = (
"*mathexpr.*",
"*gtest-all.cc",
"*.vcsetup*",
"*gtest-all.cxx",
"*.ci/shared/*",
"*/deps/*",
"*/wheelhouse/*",
"*dune/xt/functions/expression/mathexpr.cc",
"*dune/xt/functions/expression/mathexpr.hh",
)