From 8f2c451938a7731929a8ac2036ee918ec6dadab3 Mon Sep 17 00:00:00 2001 From: Ryan Sipes Date: Thu, 26 May 2016 11:16:13 -0500 Subject: [PATCH] Fixed Missing License Headers on All Files. GPL LIcense added to the top of each python file. --- mycroft/client/__init__.py | 18 ++++++++++++++++++ mycroft/client/enclosure/__init__.py | 18 ++++++++++++++++++ mycroft/client/enclosure/api.py | 18 ++++++++++++++++++ mycroft/client/enclosure/arduino.py | 18 ++++++++++++++++++ mycroft/client/enclosure/enclosure.py | 18 ++++++++++++++++++ mycroft/client/enclosure/eyes.py | 18 ++++++++++++++++++ mycroft/client/enclosure/mouth.py | 18 ++++++++++++++++++ mycroft/client/speech/__init__.py | 18 ++++++++++++++++++ mycroft/client/speech/listener.py | 18 ++++++++++++++++++ mycroft/client/speech/main.py | 18 ++++++++++++++++++ mycroft/client/speech/mic.py | 18 ++++++++++++++++++ mycroft/client/speech/recognizer_wrapper.py | 18 ++++++++++++++++++ mycroft/client/speech/wakeword_recognizer.py | 18 ++++++++++++++++++ mycroft/client/text/__init__.py | 18 ++++++++++++++++++ mycroft/client/text/cli.py | 18 ++++++++++++++++++ mycroft/configuration/__init__.py | 18 ++++++++++++++++++ mycroft/configuration/config.py | 18 ++++++++++++++++++ mycroft/dialog/__init__.py | 18 ++++++++++++++++++ mycroft/filesystem/__init__.py | 18 ++++++++++++++++++ mycroft/identity/__init__.py | 18 ++++++++++++++++++ mycroft/messagebus/__init__.py | 18 ++++++++++++++++++ mycroft/messagebus/client/__init__.py | 18 ++++++++++++++++++ mycroft/messagebus/client/ws.py | 18 ++++++++++++++++++ mycroft/messagebus/message.py | 18 ++++++++++++++++++ mycroft/messagebus/service/__init__.py | 18 ++++++++++++++++++ mycroft/messagebus/service/main.py | 18 ++++++++++++++++++ mycroft/messagebus/service/ws.py | 18 ++++++++++++++++++ mycroft/metrics/__init__.py | 18 ++++++++++++++++++ mycroft/pairing/__init__.py | 18 ++++++++++++++++++ mycroft/pairing/client.py | 18 ++++++++++++++++++ mycroft/session/__init__.py | 18 ++++++++++++++++++ mycroft/skills/__init__.py | 18 ++++++++++++++++++ mycroft/skills/alarm/__init__.py | 18 ++++++++++++++++++ mycroft/skills/audio_record/__init__.py | 18 ++++++++++++++++++ mycroft/skills/cerberus_config/__init__.py | 18 ++++++++++++++++++ mycroft/skills/container.py | 18 ++++++++++++++++++ mycroft/skills/core.py | 18 ++++++++++++++++++ mycroft/skills/date_time/__init__.py | 18 ++++++++++++++++++ mycroft/skills/desktop_launcher/__init__.py | 18 ++++++++++++++++++ mycroft/skills/dial_call/__init__.py | 18 ++++++++++++++++++ mycroft/skills/intent/__init__.py | 18 ++++++++++++++++++ mycroft/skills/ip_skill/__init__.py | 18 ++++++++++++++++++ mycroft/skills/joke/__init__.py | 18 ++++++++++++++++++ mycroft/skills/main.py | 18 ++++++++++++++++++ mycroft/skills/naptime/__init__.py | 18 ++++++++++++++++++ mycroft/skills/npr_news/__init__.py | 18 ++++++++++++++++++ mycroft/skills/pairing/__init__.py | 18 ++++++++++++++++++ mycroft/skills/reminder/__init__.py | 18 ++++++++++++++++++ mycroft/skills/scheduled_skills.py | 18 ++++++++++++++++++ mycroft/skills/send_sms/__init__.py | 18 ++++++++++++++++++ mycroft/skills/spelling/__init__.py | 18 ++++++++++++++++++ mycroft/skills/time_rules.py | 18 ++++++++++++++++++ mycroft/skills/volume/__init__.py | 18 ++++++++++++++++++ mycroft/skills/weather/__init__.py | 18 ++++++++++++++++++ .../skills/weather/owm_repackaged/__init__.py | 18 ++++++++++++++++++ .../owm_repackaged/configuration25_mycroft.py | 18 ++++++++++++++++++ mycroft/skills/weather/owm_repackaged/owm25.py | 18 ++++++++++++++++++ .../weather/owm_repackaged/owmhttpclient.py | 18 ++++++++++++++++++ mycroft/skills/wiki/__init__.py | 18 ++++++++++++++++++ mycroft/skills/wolfram_alpha/__init__.py | 18 ++++++++++++++++++ mycroft/tts/__init__.py | 18 ++++++++++++++++++ mycroft/tts/espeak_tts.py | 18 ++++++++++++++++++ mycroft/tts/fa_tts.py | 18 ++++++++++++++++++ mycroft/tts/google_tts.py | 18 ++++++++++++++++++ mycroft/tts/mary_tts.py | 18 ++++++++++++++++++ mycroft/tts/mimic_tts.py | 18 ++++++++++++++++++ mycroft/tts/remote_tts.py | 18 ++++++++++++++++++ mycroft/tts/spdsay_tts.py | 18 ++++++++++++++++++ mycroft/tts/tts_factory.py | 18 ++++++++++++++++++ mycroft/util/__init__.py | 18 ++++++++++++++++++ mycroft/util/audio_test.py | 18 ++++++++++++++++++ mycroft/util/log.py | 18 ++++++++++++++++++ mycroft/util/setup_base.py | 18 ++++++++++++++++++ 73 files changed, 1314 insertions(+) diff --git a/mycroft/client/__init__.py b/mycroft/client/__init__.py index c6b8dae313..cb59143831 100644 --- a/mycroft/client/__init__.py +++ b/mycroft/client/__init__.py @@ -1 +1,19 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + __author__ = 'seanfitz' diff --git a/mycroft/client/enclosure/__init__.py b/mycroft/client/enclosure/__init__.py index c6b8dae313..cb59143831 100644 --- a/mycroft/client/enclosure/__init__.py +++ b/mycroft/client/enclosure/__init__.py @@ -1 +1,19 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + __author__ = 'seanfitz' diff --git a/mycroft/client/enclosure/api.py b/mycroft/client/enclosure/api.py index 3c9148f22e..e23b1ea1c3 100644 --- a/mycroft/client/enclosure/api.py +++ b/mycroft/client/enclosure/api.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from mycroft.messagebus.message import Message from mycroft.util.log import getLogger diff --git a/mycroft/client/enclosure/arduino.py b/mycroft/client/enclosure/arduino.py index 52365d5e6b..bac1a1a3df 100644 --- a/mycroft/client/enclosure/arduino.py +++ b/mycroft/client/enclosure/arduino.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from mycroft.util.log import getLogger __author__ = 'jdorleans' diff --git a/mycroft/client/enclosure/enclosure.py b/mycroft/client/enclosure/enclosure.py index 71e9ab3c69..b55852fc3e 100644 --- a/mycroft/client/enclosure/enclosure.py +++ b/mycroft/client/enclosure/enclosure.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import serial import sys from Queue import Queue diff --git a/mycroft/client/enclosure/eyes.py b/mycroft/client/enclosure/eyes.py index edceec7a72..82f68d8661 100644 --- a/mycroft/client/enclosure/eyes.py +++ b/mycroft/client/enclosure/eyes.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from mycroft.util.log import getLogger __author__ = 'jdorleans' diff --git a/mycroft/client/enclosure/mouth.py b/mycroft/client/enclosure/mouth.py index 25104a3c98..5134975611 100644 --- a/mycroft/client/enclosure/mouth.py +++ b/mycroft/client/enclosure/mouth.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from mycroft.util.log import getLogger __author__ = 'jdorleans' diff --git a/mycroft/client/speech/__init__.py b/mycroft/client/speech/__init__.py index c6b8dae313..cb59143831 100644 --- a/mycroft/client/speech/__init__.py +++ b/mycroft/client/speech/__init__.py @@ -1 +1,19 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + __author__ = 'seanfitz' diff --git a/mycroft/client/speech/listener.py b/mycroft/client/speech/listener.py index faab7ca38e..44d68e3d9d 100644 --- a/mycroft/client/speech/listener.py +++ b/mycroft/client/speech/listener.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import threading import time from Queue import Queue diff --git a/mycroft/client/speech/main.py b/mycroft/client/speech/main.py index f1a7c95797..d9b5abd7fc 100644 --- a/mycroft/client/speech/main.py +++ b/mycroft/client/speech/main.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import sys from threading import Thread, Lock diff --git a/mycroft/client/speech/mic.py b/mycroft/client/speech/mic.py index 0a15d5b74e..3a9320b638 100644 --- a/mycroft/client/speech/mic.py +++ b/mycroft/client/speech/mic.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import collections import math import audioop diff --git a/mycroft/client/speech/recognizer_wrapper.py b/mycroft/client/speech/recognizer_wrapper.py index d5f7509f4b..d1058187a9 100644 --- a/mycroft/client/speech/recognizer_wrapper.py +++ b/mycroft/client/speech/recognizer_wrapper.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import json import requests diff --git a/mycroft/client/speech/wakeword_recognizer.py b/mycroft/client/speech/wakeword_recognizer.py index 3c44758d0e..ea22430c40 100644 --- a/mycroft/client/speech/wakeword_recognizer.py +++ b/mycroft/client/speech/wakeword_recognizer.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from mycroft.metrics import Stopwatch import os diff --git a/mycroft/client/text/__init__.py b/mycroft/client/text/__init__.py index c6b8dae313..cb59143831 100644 --- a/mycroft/client/text/__init__.py +++ b/mycroft/client/text/__init__.py @@ -1 +1,19 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + __author__ = 'seanfitz' diff --git a/mycroft/client/text/cli.py b/mycroft/client/text/cli.py index 29c32d18fc..616893faf6 100644 --- a/mycroft/client/text/cli.py +++ b/mycroft/client/text/cli.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import sys from threading import Thread, Lock diff --git a/mycroft/configuration/__init__.py b/mycroft/configuration/__init__.py index c6b8dae313..cb59143831 100644 --- a/mycroft/configuration/__init__.py +++ b/mycroft/configuration/__init__.py @@ -1 +1,19 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + __author__ = 'seanfitz' diff --git a/mycroft/configuration/config.py b/mycroft/configuration/config.py index 2a8d911241..f4a876f2ec 100644 --- a/mycroft/configuration/config.py +++ b/mycroft/configuration/config.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import os import requests from configobj import ConfigObj diff --git a/mycroft/dialog/__init__.py b/mycroft/dialog/__init__.py index bc5fa717ed..41f03b429b 100644 --- a/mycroft/dialog/__init__.py +++ b/mycroft/dialog/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import mustache import os import random diff --git a/mycroft/filesystem/__init__.py b/mycroft/filesystem/__init__.py index e6fec1471f..d9aad20e86 100644 --- a/mycroft/filesystem/__init__.py +++ b/mycroft/filesystem/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import os from os.path import join, expanduser, isdir diff --git a/mycroft/identity/__init__.py b/mycroft/identity/__init__.py index 79e8d2127a..9dfd3166a7 100644 --- a/mycroft/identity/__init__.py +++ b/mycroft/identity/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from uuid import uuid4 import json from mycroft.filesystem import FileSystemAccess diff --git a/mycroft/messagebus/__init__.py b/mycroft/messagebus/__init__.py index c6b8dae313..cb59143831 100644 --- a/mycroft/messagebus/__init__.py +++ b/mycroft/messagebus/__init__.py @@ -1 +1,19 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + __author__ = 'seanfitz' diff --git a/mycroft/messagebus/client/__init__.py b/mycroft/messagebus/client/__init__.py index c6b8dae313..cb59143831 100644 --- a/mycroft/messagebus/client/__init__.py +++ b/mycroft/messagebus/client/__init__.py @@ -1 +1,19 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + __author__ = 'seanfitz' diff --git a/mycroft/messagebus/client/ws.py b/mycroft/messagebus/client/ws.py index 058046493f..1a90a31f57 100644 --- a/mycroft/messagebus/client/ws.py +++ b/mycroft/messagebus/client/ws.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import json from multiprocessing.pool import ThreadPool import time diff --git a/mycroft/messagebus/message.py b/mycroft/messagebus/message.py index 27b35d379b..140e01fc29 100644 --- a/mycroft/messagebus/message.py +++ b/mycroft/messagebus/message.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import json __author__ = 'seanfitz' diff --git a/mycroft/messagebus/service/__init__.py b/mycroft/messagebus/service/__init__.py index c6b8dae313..cb59143831 100644 --- a/mycroft/messagebus/service/__init__.py +++ b/mycroft/messagebus/service/__init__.py @@ -1 +1,19 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + __author__ = 'seanfitz' diff --git a/mycroft/messagebus/service/main.py b/mycroft/messagebus/service/main.py index f0a4beafe5..7e873bf67a 100644 --- a/mycroft/messagebus/service/main.py +++ b/mycroft/messagebus/service/main.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import tornado.ioloop import tornado.web diff --git a/mycroft/messagebus/service/ws.py b/mycroft/messagebus/service/ws.py index 75f996bac0..f46f70f5f9 100644 --- a/mycroft/messagebus/service/ws.py +++ b/mycroft/messagebus/service/ws.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import traceback import sys import json diff --git a/mycroft/metrics/__init__.py b/mycroft/metrics/__init__.py index 7e3453070e..eefe39ab61 100644 --- a/mycroft/metrics/__init__.py +++ b/mycroft/metrics/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import json import threading import time diff --git a/mycroft/pairing/__init__.py b/mycroft/pairing/__init__.py index e69de29bb2..f3c70622d0 100644 --- a/mycroft/pairing/__init__.py +++ b/mycroft/pairing/__init__.py @@ -0,0 +1,18 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + diff --git a/mycroft/pairing/client.py b/mycroft/pairing/client.py index 3f2d3113ad..58b773628c 100644 --- a/mycroft/pairing/client.py +++ b/mycroft/pairing/client.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import shortuuid from mycroft.configuration.config import ConfigurationManager from mycroft.identity import IdentityManager diff --git a/mycroft/session/__init__.py b/mycroft/session/__init__.py index 90444413c6..fbeb863962 100644 --- a/mycroft/session/__init__.py +++ b/mycroft/session/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import time from uuid import uuid4 from threading import Lock diff --git a/mycroft/skills/__init__.py b/mycroft/skills/__init__.py index c6b8dae313..cb59143831 100644 --- a/mycroft/skills/__init__.py +++ b/mycroft/skills/__init__.py @@ -1 +1,19 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + __author__ = 'seanfitz' diff --git a/mycroft/skills/alarm/__init__.py b/mycroft/skills/alarm/__init__.py index 28aeffa4e5..97ec30c01c 100644 --- a/mycroft/skills/alarm/__init__.py +++ b/mycroft/skills/alarm/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import time import yaml from alsaaudio import Mixer diff --git a/mycroft/skills/audio_record/__init__.py b/mycroft/skills/audio_record/__init__.py index d084738545..9cd219c0de 100644 --- a/mycroft/skills/audio_record/__init__.py +++ b/mycroft/skills/audio_record/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import math import time from os.path import dirname diff --git a/mycroft/skills/cerberus_config/__init__.py b/mycroft/skills/cerberus_config/__init__.py index 032aa80483..06af1d9321 100644 --- a/mycroft/skills/cerberus_config/__init__.py +++ b/mycroft/skills/cerberus_config/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from adapt.intent import IntentBuilder from os.path import join, dirname diff --git a/mycroft/skills/container.py b/mycroft/skills/container.py index 6f95f281a1..3bc45b6a27 100644 --- a/mycroft/skills/container.py +++ b/mycroft/skills/container.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import sys import os import argparse diff --git a/mycroft/skills/core.py b/mycroft/skills/core.py index ebb64d2641..ad13d88a48 100644 --- a/mycroft/skills/core.py +++ b/mycroft/skills/core.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import imp import time diff --git a/mycroft/skills/date_time/__init__.py b/mycroft/skills/date_time/__init__.py index a54c005599..bf072f2951 100644 --- a/mycroft/skills/date_time/__init__.py +++ b/mycroft/skills/date_time/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import datetime from os.path import dirname, join diff --git a/mycroft/skills/desktop_launcher/__init__.py b/mycroft/skills/desktop_launcher/__init__.py index 8a1c2b0bf2..a4f0227f14 100644 --- a/mycroft/skills/desktop_launcher/__init__.py +++ b/mycroft/skills/desktop_launcher/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import os import sys import urllib2 diff --git a/mycroft/skills/dial_call/__init__.py b/mycroft/skills/dial_call/__init__.py index b953a9a3a5..510d09472a 100644 --- a/mycroft/skills/dial_call/__init__.py +++ b/mycroft/skills/dial_call/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import subprocess from os.path import join, dirname diff --git a/mycroft/skills/intent/__init__.py b/mycroft/skills/intent/__init__.py index 08f5831a36..e1a47e0fb5 100644 --- a/mycroft/skills/intent/__init__.py +++ b/mycroft/skills/intent/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from adapt.engine import IntentDeterminationEngine from mycroft.messagebus.message import Message from mycroft.skills.core import open_intent_envelope, MycroftSkill diff --git a/mycroft/skills/ip_skill/__init__.py b/mycroft/skills/ip_skill/__init__.py index 03240f079e..b3c682eb8d 100644 --- a/mycroft/skills/ip_skill/__init__.py +++ b/mycroft/skills/ip_skill/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from os.path import dirname, join from netifaces import interfaces, ifaddresses, AF_INET diff --git a/mycroft/skills/joke/__init__.py b/mycroft/skills/joke/__init__.py index e4a0e4b58e..5e1ab5b0fa 100644 --- a/mycroft/skills/joke/__init__.py +++ b/mycroft/skills/joke/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from os.path import dirname import pyjokes diff --git a/mycroft/skills/main.py b/mycroft/skills/main.py index e14cc4915b..44d2d3a5f3 100644 --- a/mycroft/skills/main.py +++ b/mycroft/skills/main.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import json from mycroft.messagebus.client.ws import WebsocketClient diff --git a/mycroft/skills/naptime/__init__.py b/mycroft/skills/naptime/__init__.py index e45a1db438..2c148d1915 100644 --- a/mycroft/skills/naptime/__init__.py +++ b/mycroft/skills/naptime/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from os.path import dirname from os.path import join diff --git a/mycroft/skills/npr_news/__init__.py b/mycroft/skills/npr_news/__init__.py index bc2a6c749b..9f667bb363 100644 --- a/mycroft/skills/npr_news/__init__.py +++ b/mycroft/skills/npr_news/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import feedparser import time from os.path import dirname diff --git a/mycroft/skills/pairing/__init__.py b/mycroft/skills/pairing/__init__.py index 11949cf908..69849284e8 100644 --- a/mycroft/skills/pairing/__init__.py +++ b/mycroft/skills/pairing/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import threading from adapt.intent import IntentBuilder diff --git a/mycroft/skills/reminder/__init__.py b/mycroft/skills/reminder/__init__.py index 4fe1581a0f..7911866a76 100644 --- a/mycroft/skills/reminder/__init__.py +++ b/mycroft/skills/reminder/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import re import time import yaml diff --git a/mycroft/skills/scheduled_skills.py b/mycroft/skills/scheduled_skills.py index c074b0e518..0025d973bc 100644 --- a/mycroft/skills/scheduled_skills.py +++ b/mycroft/skills/scheduled_skills.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import abc from datetime import datetime from threading import Timer, Lock diff --git a/mycroft/skills/send_sms/__init__.py b/mycroft/skills/send_sms/__init__.py index 62094f0560..9550d9049d 100644 --- a/mycroft/skills/send_sms/__init__.py +++ b/mycroft/skills/send_sms/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import subprocess from os.path import dirname, join diff --git a/mycroft/skills/spelling/__init__.py b/mycroft/skills/spelling/__init__.py index 8da3c4030d..edac3807ae 100644 --- a/mycroft/skills/spelling/__init__.py +++ b/mycroft/skills/spelling/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from os.path import dirname, join from adapt.intent import IntentBuilder diff --git a/mycroft/skills/time_rules.py b/mycroft/skills/time_rules.py index b11e7bab0a..5c03acd71c 100644 --- a/mycroft/skills/time_rules.py +++ b/mycroft/skills/time_rules.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import abc import re diff --git a/mycroft/skills/volume/__init__.py b/mycroft/skills/volume/__init__.py index fcf958fa94..a4f13d7b24 100644 --- a/mycroft/skills/volume/__init__.py +++ b/mycroft/skills/volume/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import time from alsaaudio import Mixer from os.path import dirname diff --git a/mycroft/skills/weather/__init__.py b/mycroft/skills/weather/__init__.py index 5cb70164d3..178a1e149d 100644 --- a/mycroft/skills/weather/__init__.py +++ b/mycroft/skills/weather/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from adapt.intent import IntentBuilder from os.path import dirname from pyowm.exceptions.api_call_error import APICallError diff --git a/mycroft/skills/weather/owm_repackaged/__init__.py b/mycroft/skills/weather/owm_repackaged/__init__.py index 1d89e48e65..49040ddf04 100644 --- a/mycroft/skills/weather/owm_repackaged/__init__.py +++ b/mycroft/skills/weather/owm_repackaged/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + #!/usr/bin/env python # -*- coding: utf-8 -*- diff --git a/mycroft/skills/weather/owm_repackaged/configuration25_mycroft.py b/mycroft/skills/weather/owm_repackaged/configuration25_mycroft.py index 7436f25507..a9b60bcd44 100644 --- a/mycroft/skills/weather/owm_repackaged/configuration25_mycroft.py +++ b/mycroft/skills/weather/owm_repackaged/configuration25_mycroft.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from pyowm.caches import nullcache from pyowm.webapi25 import observationparser from pyowm.webapi25 import observationlistparser diff --git a/mycroft/skills/weather/owm_repackaged/owm25.py b/mycroft/skills/weather/owm_repackaged/owm25.py index 7306f9be18..c964e24132 100644 --- a/mycroft/skills/weather/owm_repackaged/owm25.py +++ b/mycroft/skills/weather/owm_repackaged/owm25.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + """ Module containing the PyOWM library main entry point """ diff --git a/mycroft/skills/weather/owm_repackaged/owmhttpclient.py b/mycroft/skills/weather/owm_repackaged/owmhttpclient.py index 6a22649d70..5b90fd6a62 100644 --- a/mycroft/skills/weather/owm_repackaged/owmhttpclient.py +++ b/mycroft/skills/weather/owm_repackaged/owmhttpclient.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + """ Module containing classes for HTTP client/server interactions """ diff --git a/mycroft/skills/wiki/__init__.py b/mycroft/skills/wiki/__init__.py index 95366c0b5a..22d7be9093 100644 --- a/mycroft/skills/wiki/__init__.py +++ b/mycroft/skills/wiki/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import re from os.path import join, dirname from random import randrange diff --git a/mycroft/skills/wolfram_alpha/__init__.py b/mycroft/skills/wolfram_alpha/__init__.py index b98ef06052..5174cc1d84 100644 --- a/mycroft/skills/wolfram_alpha/__init__.py +++ b/mycroft/skills/wolfram_alpha/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from StringIO import StringIO from os.path import dirname diff --git a/mycroft/tts/__init__.py b/mycroft/tts/__init__.py index 786c5f9906..199fbf30cb 100644 --- a/mycroft/tts/__init__.py +++ b/mycroft/tts/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import abc from os.path import dirname, exists, isdir diff --git a/mycroft/tts/espeak_tts.py b/mycroft/tts/espeak_tts.py index 6b305f7a50..cddaa518d7 100644 --- a/mycroft/tts/espeak_tts.py +++ b/mycroft/tts/espeak_tts.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import subprocess from mycroft.tts import TTS, TTSValidator diff --git a/mycroft/tts/fa_tts.py b/mycroft/tts/fa_tts.py index f2b1e3a0a8..60ec5f6915 100644 --- a/mycroft/tts/fa_tts.py +++ b/mycroft/tts/fa_tts.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import json import requests diff --git a/mycroft/tts/google_tts.py b/mycroft/tts/google_tts.py index ab704e5725..9df93c4aff 100644 --- a/mycroft/tts/google_tts.py +++ b/mycroft/tts/google_tts.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from gtts import gTTS from mycroft.tts import TTS, TTSValidator diff --git a/mycroft/tts/mary_tts.py b/mycroft/tts/mary_tts.py index babebf41ba..72f4a9cab1 100644 --- a/mycroft/tts/mary_tts.py +++ b/mycroft/tts/mary_tts.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import requests from mycroft.tts import TTSValidator diff --git a/mycroft/tts/mimic_tts.py b/mycroft/tts/mimic_tts.py index 1be324d6f8..7217ff22ca 100644 --- a/mycroft/tts/mimic_tts.py +++ b/mycroft/tts/mimic_tts.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import subprocess from os.path import join diff --git a/mycroft/tts/remote_tts.py b/mycroft/tts/remote_tts.py index 65e94ac4ab..83e8228b2e 100644 --- a/mycroft/tts/remote_tts.py +++ b/mycroft/tts/remote_tts.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import abc import re diff --git a/mycroft/tts/spdsay_tts.py b/mycroft/tts/spdsay_tts.py index d7a043d2f1..16abdeb677 100644 --- a/mycroft/tts/spdsay_tts.py +++ b/mycroft/tts/spdsay_tts.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import subprocess from mycroft.tts import TTS, TTSValidator diff --git a/mycroft/tts/tts_factory.py b/mycroft/tts/tts_factory.py index f2cb19968a..f0a5977f43 100644 --- a/mycroft/tts/tts_factory.py +++ b/mycroft/tts/tts_factory.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import logging from mycroft.configuration.config import ConfigurationManager diff --git a/mycroft/util/__init__.py b/mycroft/util/__init__.py index 3b8aa559f0..14c345c8b1 100644 --- a/mycroft/util/__init__.py +++ b/mycroft/util/__init__.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import os import subprocess from os.path import dirname diff --git a/mycroft/util/audio_test.py b/mycroft/util/audio_test.py index 5c7f9a00cb..40a3904308 100644 --- a/mycroft/util/audio_test.py +++ b/mycroft/util/audio_test.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + from speech_recognition import Recognizer from mycroft.client.speech.mic import MutableMicrophone from mycroft.util import play_wav diff --git a/mycroft/util/log.py b/mycroft/util/log.py index 2bee0c2038..b37a966e89 100644 --- a/mycroft/util/log.py +++ b/mycroft/util/log.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import logging __author__ = 'seanfitz' diff --git a/mycroft/util/setup_base.py b/mycroft/util/setup_base.py index 765b922a10..88e246f948 100644 --- a/mycroft/util/setup_base.py +++ b/mycroft/util/setup_base.py @@ -1,3 +1,21 @@ +# Copyright 2016 Mycroft AI, Inc. +# +# This file is part of Mycroft Core. +# +# Mycroft Core is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Mycroft Core 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Mycroft Core. If not, see . + + import os import subprocess from setuptools import find_packages