Metadata-Version: 2.0
Name: virtualenvwrapper.django
Version: 0.4.1
Summary: virtualenvwrapper plugin to create a Django project work directory
Home-page: https://bitbucket.org/dhellmann/virtualenvwrapper.django
Author: Doug Hellmann
Author-email: doug.hellmann@gmail.com
License: UNKNOWN
Platform: Any
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: Framework :: Django
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Requires: virtualenv
Requires: virtualenvwrapper (>=4.0)
Provides: virtualenvwrapper.django

==========================
 virtualenvwrapper.django
==========================

virtualenvwrapper.django is a template plugin for
`virtualenvwrapper`_ to create new Django projects
automatically.  When used with ``mkproject``, it installs Django into
the new virtualenv then runs ``django-admin.py`` to create a new
project skeleton.

Installation
============

::

  $ pip install virtualenvwrapper.django

Usage
=====

::

  $ mkproject -t django my_fancy_new_site
  site_filename is /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site.pyc
  New python executable in my_fancy_new_site/bin/python
  Installing distribute...done.

  ... virtualenv and project directories are created ...

  Applying template django
  Downloading/unpacking django
    Downloading Django-1.2.4.tar.gz (6.4Mb): 6.4Mb downloaded
    Running setup.py egg_info for package django

  Installing collected packages: django
    Running setup.py install for django
      changing mode of build/scripts-2.7/django-admin.py from 644 to 755

      changing mode of /Users/dhellmann/.virtualenvs/my_fancy_new_site/bin/django-admin.py to 755
  Successfully installed django
  Cleaning up...

  virtualenvwrapper.django Running "django-admin.py startprojects my_fancy_new_site"

  (my_fancy_new_site)$ find .
  .
  ./my_fancy_new_site
  ./my_fancy_new_site/__init__.py
  ./my_fancy_new_site/manage.py
  ./my_fancy_new_site/settings.py
  ./my_fancy_new_site/urls.py

.. _virtualenvwrapper: https://pypi.python.org/pypi/virtualenvwrapper


