From f21238d2d64ec36e0d8d2a84f4469ccdb219ab6c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 23 Apr 2011 16:59:49 -0400 Subject: [PATCH] really coming together --- docs/contents.rst.inc | 7 ++++-- docs/scenarios/cli.rst | 8 ++++++ docs/scenarios/gui.rst | 19 ++++++++++++++ docs/writing/license.rst | 54 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 86 insertions(+), 2 deletions(-) create mode 100644 docs/scenarios/cli.rst create mode 100644 docs/scenarios/gui.rst create mode 100644 docs/writing/license.rst diff --git a/docs/contents.rst.inc b/docs/contents.rst.inc index c3b7dbf..0c5f160 100644 --- a/docs/contents.rst.inc +++ b/docs/contents.rst.inc @@ -36,8 +36,9 @@ This part of the guide focuses on best practices for writing Python code. writing/structure writing/style - starting/documentation - starting/tests + writing/documentation + writing/tests + writing/license @@ -62,6 +63,8 @@ different scenarios. .. toctree:: :maxdepth: 2 + scenarios/cli + scenarios/gui scenarios/web scenarios/admin scenarios/ci diff --git a/docs/scenarios/cli.rst b/docs/scenarios/cli.rst new file mode 100644 index 0000000..216ad6b --- /dev/null +++ b/docs/scenarios/cli.rst @@ -0,0 +1,8 @@ +Command Line Applications +========================= + + + +Clint +----- + diff --git a/docs/scenarios/gui.rst b/docs/scenarios/gui.rst new file mode 100644 index 0000000..8532d3b --- /dev/null +++ b/docs/scenarios/gui.rst @@ -0,0 +1,19 @@ +GUI Applications +================ + + +Qt +:: + +PySide +------ + +PyQt +---- + + + +PyObjC +------ + + diff --git a/docs/writing/license.rst b/docs/writing/license.rst new file mode 100644 index 0000000..b8b06b5 --- /dev/null +++ b/docs/writing/license.rst @@ -0,0 +1,54 @@ +Choosing a License +================== + +Open source. + + + + + +Non-Restrictive +::::::::::::::: + +PSFL +---- + + +MIT / BSD / ISC +--------------- + + +MIT (X11) +```````` + +New BSD +``````` + +ISC +``` + +Apache +------ + + +Restrictive +::::::::::: + + +LGPL +---- + + + +GPL +--- + + +GPLv2 +````` + + +GPLv3 +````` + +