From 230e66cee05ec758943bba2914038317266cb823 Mon Sep 17 00:00:00 2001 From: Erik Bernoth Date: Fri, 26 Apr 2013 16:51:43 +0200 Subject: [PATCH] License added: CC-BY-SA 3.0 To enable other people the usage of this text a public license was added. Although it's generally better to use a software license like GPL for the source code, it was decided to license the source code here under the same license, because it's basically a demonstration code base and not really meant for any productive use. As the author of this commit and all appending changes I, Erik Bernoth, hereby grant full CC-BY-SA 3.0 rights to all contributions added by this commit. Signed-off-by: Erik Bernoth --- LICENSE.rst | 29 ++++++++++++++++++++ README.rst | 3 ++ about.rst | 3 ++ command-line-scripts.rst | 3 ++ dependencies.rst | 3 ++ everything.rst | 3 ++ funniest/funniest/__init__.py | 3 ++ funniest/funniest/command_line.py | 3 ++ funniest/funniest/tests/__init__.py | 3 ++ funniest/funniest/tests/test_command_line.py | 3 ++ funniest/funniest/tests/test_joke.py | 3 ++ funniest/setup.py | 3 ++ index.rst | 3 ++ metadata.rst | 3 ++ minimal.rst | 3 ++ non-code-files.rst | 3 ++ testing.rst | 3 ++ 17 files changed, 77 insertions(+) create mode 100644 LICENSE.rst diff --git a/LICENSE.rst b/LICENSE.rst new file mode 100644 index 0000000..d26a633 --- /dev/null +++ b/LICENSE.rst @@ -0,0 +1,29 @@ +.. (C) 2013, Scott Torberg + +**All \*.rst files in this project are licensed under the** +`Creative Commons Attribution - Share Alike 3.0`_. + +Attribution: Scott Torberg + +**You are free**: + + - **To share** – *to copy, distribute and transmit the work*. + - **To remix** – *to adapt the work*. + - **Commercial use** - *You may use this work for commercial purposes*. + +**Under the following conditions**: + + - **Attribution** – *You must attribute the work in the manner specified by + the author or licensor, but not in any way that + suggests that they endorse you or your use + of the work.* + + - **Share Alike** – *If you alter, transform, or build upon this work, you + may distribute the resulting work only under the same + or similar license to this one.* + + + + + +.. _Creative Commons Attribution - Share Alike 3.0: http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/README.rst b/README.rst index 2bc2ec8..2bfbf3f 100644 --- a/README.rst +++ b/README.rst @@ -1,3 +1,6 @@ +.. This document is licensed under `CC-BY-SA ` +.. (C) 2013, Scott Torberg + This tutorial is hosted at http://www.scotttorborg.com/python-packaging/ Feedback is welcome, please submit a pull request or email storborg@gmail.com. diff --git a/about.rst b/about.rst index 0dfbcaa..0c321d9 100644 --- a/about.rst +++ b/about.rst @@ -1,3 +1,6 @@ +.. This document is licensed under `CC-BY-SA ` +.. (C) 2013, Scott Torberg + About This Tutorial / Contributing ================================== diff --git a/command-line-scripts.rst b/command-line-scripts.rst index f55c589..c74599e 100644 --- a/command-line-scripts.rst +++ b/command-line-scripts.rst @@ -1,3 +1,6 @@ +.. This document is licensed under `CC-BY-SA ` +.. (C) 2013, Scott Torberg + Command Line Scripts ==================== diff --git a/dependencies.rst b/dependencies.rst index a7dd0d0..ab215cd 100644 --- a/dependencies.rst +++ b/dependencies.rst @@ -1,3 +1,6 @@ +.. This document is licensed under `CC-BY-SA ` +.. (C) 2013, Scott Torberg + Specifying Dependencies ======================= diff --git a/everything.rst b/everything.rst index 2bc5e20..363727f 100644 --- a/everything.rst +++ b/everything.rst @@ -1,3 +1,6 @@ +.. This document is licensed under `CC-BY-SA ` +.. (C) 2013, Scott Torberg + Putting It All Together ======================= diff --git a/funniest/funniest/__init__.py b/funniest/funniest/__init__.py index c9d8281..48e1c18 100644 --- a/funniest/funniest/__init__.py +++ b/funniest/funniest/__init__.py @@ -1,3 +1,6 @@ +## This document is licensed under `CC-BY-SA ` +## (C) 2013, Scott Torberg + from markdown import markdown def joke(): diff --git a/funniest/funniest/command_line.py b/funniest/funniest/command_line.py index fb1f624..a02d682 100644 --- a/funniest/funniest/command_line.py +++ b/funniest/funniest/command_line.py @@ -1,3 +1,6 @@ +## This document is licensed under `CC-BY-SA ` +## (C) 2013, Scott Torberg + from . import joke diff --git a/funniest/funniest/tests/__init__.py b/funniest/funniest/tests/__init__.py index e69de29..c19c774 100644 --- a/funniest/funniest/tests/__init__.py +++ b/funniest/funniest/tests/__init__.py @@ -0,0 +1,3 @@ +## This document is licensed under `CC-BY-SA ` +## (C) 2013, Scott Torberg + diff --git a/funniest/funniest/tests/test_command_line.py b/funniest/funniest/tests/test_command_line.py index 3b2c8fc..8a945d0 100644 --- a/funniest/funniest/tests/test_command_line.py +++ b/funniest/funniest/tests/test_command_line.py @@ -1,3 +1,6 @@ +## This document is licensed under `CC-BY-SA ` +## (C) 2013, Scott Torberg + from unittest import TestCase from funniest.cmd import main diff --git a/funniest/funniest/tests/test_joke.py b/funniest/funniest/tests/test_joke.py index 6357288..5f06ee3 100644 --- a/funniest/funniest/tests/test_joke.py +++ b/funniest/funniest/tests/test_joke.py @@ -1,3 +1,6 @@ +## This document is licensed under `CC-BY-SA ` +## (C) 2013, Scott Torberg + from unittest import TestCase import funniest diff --git a/funniest/setup.py b/funniest/setup.py index 5c0650e..a719746 100644 --- a/funniest/setup.py +++ b/funniest/setup.py @@ -1,3 +1,6 @@ +## This document is licensed under `CC-BY-SA ` +## (C) 2013, Scott Torberg + from setuptools import setup def readme(): diff --git a/index.rst b/index.rst index 7db6043..b9c8546 100644 --- a/index.rst +++ b/index.rst @@ -1,3 +1,6 @@ +.. This document is licensed under `CC-BY-SA ` +.. (C) 2013, Scott Torberg + How To Package Your Python Code =============================== diff --git a/metadata.rst b/metadata.rst index 4548f42..48922b3 100644 --- a/metadata.rst +++ b/metadata.rst @@ -1,3 +1,6 @@ +.. This document is licensed under `CC-BY-SA ` +.. (C) 2013, Scott Torberg + Better Package Metadata ======================= diff --git a/minimal.rst b/minimal.rst index d74def4..cc0aa3f 100644 --- a/minimal.rst +++ b/minimal.rst @@ -1,3 +1,6 @@ +.. This document is licensed under `CC-BY-SA ` +.. (C) 2013, Scott Torberg + Minimal Structure ================= diff --git a/non-code-files.rst b/non-code-files.rst index 905e5ac..2e59520 100644 --- a/non-code-files.rst +++ b/non-code-files.rst @@ -1,3 +1,6 @@ +.. This document is licensed under `CC-BY-SA ` +.. (C) 2013, Scott Torberg + Adding Non-Code Files ===================== diff --git a/testing.rst b/testing.rst index 7cf8575..467fcd1 100644 --- a/testing.rst +++ b/testing.rst @@ -1,3 +1,6 @@ +.. This document is licensed under `CC-BY-SA ` +.. (C) 2013, Scott Torberg + Let There Be Tests ==================