From 0f33db248a06819f71a97045dd2f833d823f3071 Mon Sep 17 00:00:00 2001 From: pictuga Date: Wed, 26 Aug 2020 20:08:22 +0200 Subject: [PATCH] Add license info in each file --- main.py | 17 +++++++++++++++++ morss/__init__.py | 17 +++++++++++++++++ morss/__main__.py | 17 +++++++++++++++++ morss/cli.py | 17 +++++++++++++++++ morss/crawler.py | 17 +++++++++++++++++ morss/feeds.py | 17 +++++++++++++++++ morss/morss.py | 17 +++++++++++++++++ morss/readabilite.py | 17 +++++++++++++++++ morss/wsgi.py | 17 +++++++++++++++++ 9 files changed, 153 insertions(+) diff --git a/main.py b/main.py index 7fad225..6182d20 100644 --- a/main.py +++ b/main.py @@ -1,5 +1,22 @@ #!/usr/bin/env python +# This file is part of morss +# +# Copyright (C) 2013-2020 pictuga +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero 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 Affero General Public License for more +# details. +# +# You should have received a copy of the GNU Affero General Public License along +# with this program. If not, see . + from morss.__main__ import main from morss.wsgi import application diff --git a/morss/__init__.py b/morss/__init__.py index 8e8f36e..179cbeb 100644 --- a/morss/__init__.py +++ b/morss/__init__.py @@ -1,3 +1,20 @@ +# This file is part of morss +# +# Copyright (C) 2013-2020 pictuga +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero 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 Affero General Public License for more +# details. +# +# You should have received a copy of the GNU Affero General Public License along +# with this program. If not, see . + # ran on `import morss` from .morss import * from .wsgi import application diff --git a/morss/__main__.py b/morss/__main__.py index 275c57a..bdbee44 100644 --- a/morss/__main__.py +++ b/morss/__main__.py @@ -1,3 +1,20 @@ +# This file is part of morss +# +# Copyright (C) 2013-2020 pictuga +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero 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 Affero General Public License for more +# details. +# +# You should have received a copy of the GNU Affero General Public License along +# with this program. If not, see . + # ran on `python -m morss` import os diff --git a/morss/cli.py b/morss/cli.py index a58b800..547cb1c 100644 --- a/morss/cli.py +++ b/morss/cli.py @@ -1,3 +1,20 @@ +# This file is part of morss +# +# Copyright (C) 2013-2020 pictuga +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero 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 Affero General Public License for more +# details. +# +# You should have received a copy of the GNU Affero General Public License along +# with this program. If not, see . + import sys import os.path import argparse diff --git a/morss/crawler.py b/morss/crawler.py index 9481f35..95ce709 100644 --- a/morss/crawler.py +++ b/morss/crawler.py @@ -1,3 +1,20 @@ +# This file is part of morss +# +# Copyright (C) 2013-2020 pictuga +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero 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 Affero General Public License for more +# details. +# +# You should have received a copy of the GNU Affero General Public License along +# with this program. If not, see . + import os import sys diff --git a/morss/feeds.py b/morss/feeds.py index f246403..bbe0f81 100644 --- a/morss/feeds.py +++ b/morss/feeds.py @@ -1,3 +1,20 @@ +# This file is part of morss +# +# Copyright (C) 2013-2020 pictuga +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero 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 Affero General Public License for more +# details. +# +# You should have received a copy of the GNU Affero General Public License along +# with this program. If not, see . + import sys import os.path diff --git a/morss/morss.py b/morss/morss.py index a4f2502..25a04b3 100644 --- a/morss/morss.py +++ b/morss/morss.py @@ -1,3 +1,20 @@ +# This file is part of morss +# +# Copyright (C) 2013-2020 pictuga +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero 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 Affero General Public License for more +# details. +# +# You should have received a copy of the GNU Affero General Public License along +# with this program. If not, see . + import os import time diff --git a/morss/readabilite.py b/morss/readabilite.py index 5f45231..a261798 100644 --- a/morss/readabilite.py +++ b/morss/readabilite.py @@ -1,3 +1,20 @@ +# This file is part of morss +# +# Copyright (C) 2013-2020 pictuga +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero 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 Affero General Public License for more +# details. +# +# You should have received a copy of the GNU Affero General Public License along +# with this program. If not, see . + import lxml.etree import lxml.html from bs4 import BeautifulSoup diff --git a/morss/wsgi.py b/morss/wsgi.py index 76816bc..d3dc5a5 100644 --- a/morss/wsgi.py +++ b/morss/wsgi.py @@ -1,3 +1,20 @@ +# This file is part of morss +# +# Copyright (C) 2013-2020 pictuga +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero 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 Affero General Public License for more +# details. +# +# You should have received a copy of the GNU Affero General Public License along +# with this program. If not, see . + import sys import os.path import re