BlueBream
=========

>>> from paste.script import command
>>> project = 'sample'
>>> commands = command.get_commands()
>>> cmd = commands['create'].load()
>>> runner = cmd('create')
>>> option_args = []
>>> extra_args = [
...            "namespace_package=test_name",
...            "main_package=test_main",
...            "interpreter=testpy",
...            "version=0.1",
...            "description=test_description",
...            "long_description=test_long_description",
...            "keywords=test_keyword",
...            "author=test_author",
...            "author_email=test_author_email",
...            "url=http://example.com",
...            "license_name=Test Public License",
...            "zip_safe=False",
...            ]
>>> exit_code = runner.run(option_args + ['-t', 'bluebream', project] + extra_args)
Selected and implied templates:
  bluebream#bluebream  A BlueBream project, base template
<BLANKLINE>
Variables:
  author:             test_author
  author_email:       test_author_email
  description:        test_description
  egg:                sample
  interpreter:        testpy
  keywords:           test_keyword
  license_name:       Test Public License
  long_description:   test_long_description
  main_package:       test_main
  namespace_package:  test_name
  package:            sample
  project:            sample
  url:                http://example.com
  version:            0.1
  zip_safe:           False
Creating template bluebream
Creating directory ./sample
  Copying bootstrap.py to ./sample/bootstrap.py
  Copying buildout.cfg_tmpl to ./sample/buildout.cfg
  Copying debug.ini_tmpl to ./sample/debug.ini
  Copying deploy.ini_tmpl to ./sample/deploy.ini
  Recursing into etc
    Creating ./sample/etc/
    Copying site.zcml_tmpl to ./sample/etc/site.zcml
  Copying setup.py_tmpl to ./sample/setup.py
  Recursing into src
    Creating ./sample/src/
    Recursing into +namespace_package+
      Creating ./sample/src/test_name/
      Recursing into +main_package+
        Creating ./sample/src/test_name/test_main/
        Copying __init__.py to ./sample/src/test_name/test_main/__init__.py
        Copying configure.zcml_tmpl to ./sample/src/test_name/test_main/configure.zcml
        Copying debug.py to ./sample/src/test_name/test_main/debug.py
        Copying securitypolicy.zcml_tmpl to ./sample/src/test_name/test_main/securitypolicy.zcml
        Copying startup.py to ./sample/src/test_name/test_main/startup.py
        Recursing into tests
          Creating ./sample/src/test_name/test_main/tests/
          Copying __init__.py to ./sample/src/test_name/test_main/tests/__init__.py
          Copying ftesting.zcml_tmpl to ./sample/src/test_name/test_main/tests/ftesting.zcml
          Copying tests.py_tmpl to ./sample/src/test_name/test_main/tests/tests.py
        Recursing into welcome
          Creating ./sample/src/test_name/test_main/welcome/
          Copying __init__.py to ./sample/src/test_name/test_main/welcome/__init__.py
          Copying app.py to ./sample/src/test_name/test_main/welcome/app.py
          Copying configure.zcml_tmpl to ./sample/src/test_name/test_main/welcome/configure.zcml
          Copying ftests.txt_tmpl to ./sample/src/test_name/test_main/welcome/ftests.txt
          Copying index.pt_tmpl to ./sample/src/test_name/test_main/welcome/index.pt
          Copying interfaces.py to ./sample/src/test_name/test_main/welcome/interfaces.py
          Recursing into static
            Creating ./sample/src/test_name/test_main/welcome/static/
            Copying logo.png to ./sample/src/test_name/test_main/welcome/static/logo.png
            Copying style.css to ./sample/src/test_name/test_main/welcome/static/style.css
          Copying views.py to ./sample/src/test_name/test_main/welcome/views.py
      Copying __init__.py to ./sample/src/test_name/__init__.py
    Recursing into +package+.egg-info
      Creating ./sample/src/sample.egg-info/
      Copying PKG-INFO to ./sample/src/sample.egg-info/PKG-INFO
  Recursing into templates
    Creating ./sample/templates/
    Copying zope_conf.in to ./sample/templates/zope_conf.in
  Recursing into var
    Creating ./sample/var/
    Recursing into filestorage
      Creating ./sample/var/filestorage/
      Copying README.txt to ./sample/var/filestorage/README.txt
    Recursing into log
      Creating ./sample/var/log/
      Copying README.txt to ./sample/var/log/README.txt
  Copying versions.cfg to ./sample/versions.cfg
Running python setup.py egg_info
