Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Licence added: CC-BY-SA 3.0 #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions LICENSE.rst
Original file line number Diff line number Diff line change
@@ -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/
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.. This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
.. (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 [email protected].
3 changes: 3 additions & 0 deletions about.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.. This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
.. (C) 2013, Scott Torberg

About This Tutorial / Contributing
==================================

Expand Down
3 changes: 3 additions & 0 deletions command-line-scripts.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.. This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
.. (C) 2013, Scott Torberg

Command Line Scripts
====================

Expand Down
3 changes: 3 additions & 0 deletions dependencies.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.. This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
.. (C) 2013, Scott Torberg

Specifying Dependencies
=======================

Expand Down
3 changes: 3 additions & 0 deletions everything.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.. This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
.. (C) 2013, Scott Torberg

Putting It All Together
=======================

Expand Down
3 changes: 3 additions & 0 deletions funniest/funniest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
## (C) 2013, Scott Torberg

from markdown import markdown

def joke():
Expand Down
3 changes: 3 additions & 0 deletions funniest/funniest/command_line.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
## (C) 2013, Scott Torberg

from . import joke


Expand Down
3 changes: 3 additions & 0 deletions funniest/funniest/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
## (C) 2013, Scott Torberg

3 changes: 3 additions & 0 deletions funniest/funniest/tests/test_command_line.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
## (C) 2013, Scott Torberg

from unittest import TestCase

from funniest.cmd import main
Expand Down
3 changes: 3 additions & 0 deletions funniest/funniest/tests/test_joke.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
## (C) 2013, Scott Torberg

from unittest import TestCase

import funniest
Expand Down
3 changes: 3 additions & 0 deletions funniest/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
## (C) 2013, Scott Torberg

from setuptools import setup

def readme():
Expand Down
3 changes: 3 additions & 0 deletions index.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.. This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
.. (C) 2013, Scott Torberg

How To Package Your Python Code
===============================

Expand Down
3 changes: 3 additions & 0 deletions metadata.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.. This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
.. (C) 2013, Scott Torberg

Better Package Metadata
=======================

Expand Down
3 changes: 3 additions & 0 deletions minimal.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.. This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
.. (C) 2013, Scott Torberg

Minimal Structure
=================

Expand Down
3 changes: 3 additions & 0 deletions non-code-files.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.. This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
.. (C) 2013, Scott Torberg

Adding Non-Code Files
=====================

Expand Down
3 changes: 3 additions & 0 deletions testing.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.. This document is licensed under `CC-BY-SA <http://creativecommons.org/licenses/by-sa/3.0/>`
.. (C) 2013, Scott Torberg

Let There Be Tests
==================

Expand Down