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 +````` + +