From e536f2876885aec576b91c252e17139a34e27cc3 Mon Sep 17 00:00:00 2001 From: Zbigniew Jędrzejewski-Szmek Date: Aug 13 2018 22:00:18 +0000 Subject: Add license information --- diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a4fe379 --- /dev/null +++ b/LICENSE @@ -0,0 +1,15 @@ +python-rustcfg — Rust cfg expression parser in python +Copyright 2018 Zbigniew Jędrzejewski-Szmek + +This library 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. + +This library 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 library; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/README.md b/README.md new file mode 100644 index 0000000..aac95b8 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Rust cfg expression parser in python diff --git a/rustcfg/__init__.py b/rustcfg/__init__.py index 768fbe9..a07cafb 100644 --- a/rustcfg/__init__.py +++ b/rustcfg/__init__.py @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: LGPL-2.1+ + import string import pyparsing as pp from functools import lru_cache diff --git a/rustcfg/test/test_expressions.py b/rustcfg/test/test_expressions.py index 50a53c7..c408ac7 100644 --- a/rustcfg/test/test_expressions.py +++ b/rustcfg/test/test_expressions.py @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: LGPL-2.1+ + import pytest import rustcfg