aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-10-01 16:49:29 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-10-01 16:49:29 +0300
commit02aa988701b562425037d5efd541976bff55405c (patch)
tree3caa1cfd2f418b9ec9f7d1d7c39dcddc20257c44
parentREADME update (diff)
downloadsimple-interpreter-02aa988701b562425037d5efd541976bff55405c.tar.gz
simple-interpreter-02aa988701b562425037d5efd541976bff55405c.zip
fix licensing notices
-rw-r--r--LICENSE.txt10
-rw-r--r--README.md3
-rw-r--r--src/lexer.py7
-rw-r--r--src/nodes.py7
-rw-r--r--src/parser.py7
-rw-r--r--src/tokens.py7
6 files changed, 22 insertions, 19 deletions
diff --git a/LICENSE.txt b/LICENSE.txt
index fbbdd68..62c44fd 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -1,4 +1,4 @@
-The MIT License (MIT)
+MIT License
Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
index d3e7bf2..959508c 100644
--- a/README.md
+++ b/README.md
@@ -216,8 +216,7 @@ the script gets separated into.
License
-------
-This project, including all of the files and their contents, is licensed under
-terms of the MIT License.
+Distributed under the MIT License.
See [LICENSE.txt] for details.
[LICENSE.txt]: LICENSE.txt
diff --git a/src/lexer.py b/src/lexer.py
index 40b994a..62ce35a 100644
--- a/src/lexer.py
+++ b/src/lexer.py
@@ -1,6 +1,7 @@
-# Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
-# This file is licensed under the terms of the MIT License.
-# See LICENSE.txt for details.
+# Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+# This file is part of the "Simple interpreter" project.
+# For details, see https://github.com/egor-tensin/simple-interpreter.
+# Distributed under the MIT License.
import re
diff --git a/src/nodes.py b/src/nodes.py
index ea9517d..f7b68fc 100644
--- a/src/nodes.py
+++ b/src/nodes.py
@@ -1,6 +1,7 @@
-# Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
-# This file is licensed under the terms of the MIT License.
-# See LICENSE.txt for details.
+# Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+# This file is part of the "Simple interpreter" project.
+# For details, see https://github.com/egor-tensin/simple-interpreter.
+# Distributed under the MIT License.
class ProgramNode:
def __init__(self, stmt_list):
diff --git a/src/parser.py b/src/parser.py
index fc748ff..190bc79 100644
--- a/src/parser.py
+++ b/src/parser.py
@@ -1,6 +1,7 @@
-# Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
-# This file is licensed under the terms of the MIT License.
-# See LICENSE.txt for details.
+# Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+# This file is part of the "Simple interpreter" project.
+# For details, see https://github.com/egor-tensin/simple-interpreter.
+# Distributed under the MIT License.
from lexer import *
from nodes import *
diff --git a/src/tokens.py b/src/tokens.py
index 3c04668..7a39903 100644
--- a/src/tokens.py
+++ b/src/tokens.py
@@ -1,6 +1,7 @@
-# Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
-# This file is licensed under the terms of the MIT License.
-# See LICENSE.txt for details.
+# Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
+# This file is part of the "Simple interpreter" project.
+# For details, see https://github.com/egor-tensin/simple-interpreter.
+# Distributed under the MIT License.
class Token:
pass