diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c97785c --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 Tomasita Cabrera + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +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 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. diff --git a/README.md b/README.md index e278ae9..fc6893f 100644 --- a/README.md +++ b/README.md @@ -435,6 +435,21 @@ The app exposes a JSON API for programmatic access: - Favicon generated using [favicon.io](https://favicon.io) - Example comics sourced from Boots and Her Buddies comic strip at [Comic Book Plus](https://comicbookplus.com/?cid=2561) -## License +## License & Content Ownership -[Add your license here] +This software is licensed under the **MIT License** - see the [LICENSE](LICENSE) file for details. + +### Your Comics Are Yours + +The Sunday Comics software is open source and free to use, but **any comics, artwork, and content you create and publish using this platform remain your intellectual property**. The software license does not grant any rights to your creative work. + +Think of it like using a camera: the camera might be shared, but the photos you take with it are yours. Sunday Comics is the camera, your comics are the photos. + +### What This Means + +- ✅ You can use Sunday Comics for free, forever +- ✅ You can modify the code however you want +- ✅ You can use it for commercial projects +- ✅ Your comics and artwork remain 100% yours +- ✅ No attribution required (but always appreciated!) +- ✅ No revenue sharing or licensing fees diff --git a/app.py b/app.py index 916a9cc..77ecffb 100644 --- a/app.py +++ b/app.py @@ -1,3 +1,7 @@ +# Sunday Comics - A simple webcomic platform +# Copyright (c) 2025 Tomasita Cabrera +# Licensed under the MIT License - see LICENSE file for details + import os from datetime import datetime from flask import Flask, render_template, abort, jsonify, request diff --git a/comics_data.py b/comics_data.py index f75dd0b..d914c6c 100644 --- a/comics_data.py +++ b/comics_data.py @@ -1,4 +1,7 @@ -# Comic data +# Sunday Comics - Comic data configuration +# Copyright (c) 2025 Tomasita Cabrera +# Licensed under the MIT License - see LICENSE file for details +# # Edit this file to add, remove, or modify comics # Global setting: The name of your comic/website diff --git a/scripts/add_comic.py b/scripts/add_comic.py index 7f4f126..2c9ea33 100755 --- a/scripts/add_comic.py +++ b/scripts/add_comic.py @@ -1,4 +1,8 @@ #!/usr/bin/env python3 +# Sunday Comics - Add comic script +# Copyright (c) 2025 Tomasita Cabrera +# Licensed under the MIT License - see LICENSE file for details + """ Script to add a new comic entry to comics_data.py with reasonable defaults """ diff --git a/scripts/generate_rss.py b/scripts/generate_rss.py index f5150c6..1226b47 100755 --- a/scripts/generate_rss.py +++ b/scripts/generate_rss.py @@ -1,4 +1,8 @@ #!/usr/bin/env python3 +# Sunday Comics - RSS feed generator +# Copyright (c) 2025 Tomasita Cabrera +# Licensed under the MIT License - see LICENSE file for details + """ Script to generate an RSS feed for the comic """