Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(78) | Call(1) | Derive(41) | Import(36)
responsible for generating a skeleton bang site
src/s/k/skeleton_stu-0.6.3/skeleton/examples/licenses.py skeleton_stu(Download)
""" Skeletons for BSD, GPL and LGPL licenses. """ from skeleton import Skeleton, Var
class NoLicense(Skeleton): """Had the a license with copyright notice only. """ src = 'licenses/no-license'
class BSD(Skeleton): """Adds a 2 or 3 clauses BSD License. Requires author and organization variables.
class GPL(Skeleton): """ Adds a GPL notice and the GPLv3 license. Requires Author and ProjectName variables.
class LicenseChoice(Skeleton): """Let the use pick the licence """ variables = [
src/s/k/skeleton-0.6/skeleton/examples/licenses.py skeleton(Download)
""" Skeletons for BSD, GPL and LGPL licenses. """ from skeleton import Skeleton, Var
class NoLicense(Skeleton): """Had the a license with copyright notice only. """ src = 'licenses/no-license'
class BSD(Skeleton): """Adds a 2 or 3 clauses BSD License. Requires author and organization variables.
class GPL(Skeleton): """ Adds a GPL notice and the GPLv3 license. Requires Author and ProjectName variables.
class LicenseChoice(Skeleton): """Let the use pick the licence """ variables = [
src/s/k/skeleton-HEAD/skeleton/examples/licenses.py skeleton(Download)
""" Skeletons for BSD, GPL and LGPL licenses. """ from skeleton import Skeleton, Var
class NoLicense(Skeleton): """Had the a license with copyright notice only. """ src = 'licenses/no-license'
class BSD(Skeleton): """Adds a 2 or 3 clauses BSD License. Requires author and organization variables.
class GPL(Skeleton): """ Adds a GPL notice and the GPLv3 license. Requires Author and ProjectName variables.
class LicenseChoice(Skeleton): """Let the use pick the licence """ variables = [
src/s/k/skeleton_stu-0.6.3/skeleton/examples/mkmodule.py skeleton_stu(Download)
#!/usr/bin/env python """ Basic script to create an empty python package containing one module """ from skeleton import Skeleton, Var class BasicModule(Skeleton):
src/s/k/skeleton-0.6/skeleton/examples/mkmodule.py skeleton(Download)
#!/usr/bin/env python """ Basic script to create an empty python package containing one module """ from skeleton import Skeleton, Var class BasicModule(Skeleton):
src/s/k/skeleton_stu-0.6.3/skeleton/examples/basicpackage.py skeleton_stu(Download)
import os from skeleton import Skeleton, Var from skeleton.utils import get_loggger, insert_into_file from skeleton.examples.licenses import LicenseChoice
class BasicPackage(Skeleton): """Create a new package package (with namespace support) with the setup.py, README.rst and MANIFEST.in files already setup. Require the following variables:
src/s/k/skeleton-HEAD/skeleton/examples/mkmodule.py skeleton(Download)
#!/usr/bin/env python """ Basic script to create an empty python package containing one module """ from skeleton import Skeleton, Var class BasicModule(Skeleton):
src/s/k/skeleton_stu-0.6.3/skeleton/examples/sphinxpackage.py skeleton_stu(Download)
import os from skeleton import Skeleton, Var from skeleton.examples.basicpackage import BasicPackage from skeleton.utils import get_loggger _LOG = get_loggger(__name__) class SphinxPackage(Skeleton):
src/s/k/skeleton-0.6/skeleton/examples/basicpackage.py skeleton(Download)
import os from skeleton import Skeleton, Var from skeleton.utils import get_loggger, insert_into_file from skeleton.examples.licenses import LicenseChoice
class BasicPackage(Skeleton): """Create a new package package (with namespace support) with the setup.py, README.rst and MANIFEST.in files already setup. Require the following variables:
src/s/k/skeleton-HEAD/skeleton/examples/basicpackage.py skeleton(Download)
import os from skeleton import Skeleton, Var from skeleton.utils import get_loggger, insert_into_file from skeleton.examples.licenses import LicenseChoice
class BasicPackage(Skeleton): """Create a new package package (with namespace support) with the setup.py, README.rst and MANIFEST.in files already setup. Require the following variables:
1 | 2 Next