From d963750cf152137251128779a54e3eea3b1d8293 Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Thu, 29 Nov 2018 22:52:20 +0100 Subject: [PATCH] add AUTHORS and license --- AUTHORS | 5 +++++ tiramisu_parser.py | 16 ++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..66758b6 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,5 @@ +Authors +-------- + +Emmanuel Garette lead developer + diff --git a/tiramisu_parser.py b/tiramisu_parser.py index 6d96fee..e0e2c7e 100644 --- a/tiramisu_parser.py +++ b/tiramisu_parser.py @@ -1,3 +1,19 @@ +# Copyright (C) 2018 Team tiramisu (see AUTHORS for all contributors) +# +# This program 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 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 Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . + + from typing import Union, List from argparse import ArgumentParser, Namespace, SUPPRESS from tiramisu import Option, OptionDescription, Config, BoolOption, StrOption, IntOption, \