Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(13) | Call(9) | Derive(0) | Import(4)
Create a new package package (with namespace support) with the setup.py, README.rst and MANIFEST.in files already setup. Require the following variables: - project_name; - package_name; - author; - and author_email. (more...)
src/s/k/skeleton_stu-0.6.3/skeleton/tests/test_examples.py skeleton_stu(Download)
import unittest from skeleton.examples.basicpackage import BasicPackage, main from skeleton.examples.licenses import ( BSD, BSD_THIRD_CLAUSE, GPL, LGPL, NoLicense, LicenseChoice,
def test_write(self): """Tests skeleton.examples.basicpackage.BasicPackage with a single package """ skel = BasicPackage( project_name='foo',
def test_write_with_bsd(self): """Tests skeleton.examples.basicpackage.BasicPackage add BSD license """ skel = BasicPackage( project_name='foo',
def test_write_namespaces(self): """Tests skeleton.examples.basicpackage.BasicPackage with namespaces """ skel = BasicPackage( project_name='foo.bar.baz',
src/s/k/skeleton-0.6/skeleton/tests/test_examples.py skeleton(Download)
import unittest from skeleton.examples.basicpackage import BasicPackage, main from skeleton.examples.licenses import ( BSD, BSD_THIRD_CLAUSE, GPL, LGPL, NoLicense, LicenseChoice,
def test_write(self): """Tests skeleton.examples.basicpackage.BasicPackage with a single package """ skel = BasicPackage( project_name='foo',
def test_write_with_bsd(self): """Tests skeleton.examples.basicpackage.BasicPackage add BSD license """ skel = BasicPackage( project_name='foo',
def test_write_namespaces(self): """Tests skeleton.examples.basicpackage.BasicPackage with namespaces """ skel = BasicPackage( project_name='foo.bar.baz',
src/s/k/skeleton-HEAD/skeleton/tests/test_examples.py skeleton(Download)
import unittest from skeleton.examples.basicpackage import BasicPackage, main from skeleton.examples.licenses import ( BSD, BSD_THIRD_CLAUSE, GPL, LGPL, NoLicense, LicenseChoice,
def test_write(self): """Tests skeleton.examples.basicpackage.BasicPackage with a single package """ skel = BasicPackage( project_name='foo',
def test_write_with_bsd(self): """Tests skeleton.examples.basicpackage.BasicPackage add BSD license """ skel = BasicPackage( project_name='foo',
def test_write_namespaces(self): """Tests skeleton.examples.basicpackage.BasicPackage with namespaces """ skel = BasicPackage( project_name='foo.bar.baz',
src/s/k/skeleton_stu-0.6.3/skeleton/examples/sphinxpackage.py skeleton_stu(Download)
from skeleton import Skeleton, Var from skeleton.examples.basicpackage import BasicPackage from skeleton.utils import get_loggger