|
@@ -0,0 +1,34 @@
|
|
|
+#!/usr/bin/env python3
|
|
|
+"""
|
|
|
+This includes some skeleton stuff for a module
|
|
|
+using python 3, using some guidelines from PEP8.
|
|
|
+"""
|
|
|
+# From future imports go here
|
|
|
+from __future__ import better_implementation
|
|
|
+
|
|
|
+# Then dunders
|
|
|
+__all__ = ['dont', 'use', 'all']
|
|
|
+__version__ = 0.1
|
|
|
+__author__ = "Fred Damstra, Other Guy, Another Guy"
|
|
|
+__copyright__ = "Copyright 2018, MonkeyBOX Entertainment"
|
|
|
+__credits__ = ["Fred Damstra", "Other Guy", "Another Guy"]
|
|
|
+__license__ = "GPL"
|
|
|
+__maintainer__ = "Fred Damstra"
|
|
|
+__email__ = "fred.damstra@gmail.com"
|
|
|
+__status__ = "Prototype" # Either Prototype, Development, or Production
|
|
|
+
|
|
|
+# This is the standard order of imports. The comments
|
|
|
+# should probably be removed but the line breaks should
|
|
|
+# remain between groups.
|
|
|
+#
|
|
|
+# Standard library imports.
|
|
|
+import os
|
|
|
+import sys
|
|
|
+
|
|
|
+# Related third party imports.
|
|
|
+import gitlib
|
|
|
+
|
|
|
+# Local application/library specific imports.
|
|
|
+from mylib import myfunc
|
|
|
+
|
|
|
+
|