Metadata-Version: 1.0
Name: dj-cmd
Version: 0.2
Summary: `dj cmd` is a Django shortcut command.
Home-page: https://github.com/nigma/dj-cmd
Author: Filip Wasilewski
Author-email: en@ig.ma
License: BSD
Download-URL: https://github.com/nigma/dj-cmd/zipball/master
Description: ``dj cmd``, for short
        =====================
        
        .. image::
            https://secure.travis-ci.org/nigma/dj-cmd.png?branch=master
            :alt: Build Status
            :target: https://secure.travis-ci.org/nigma/dj-cmd
        
        Tired of typing ``python manage.py runserver``? Just
        
        ::
        
            pip install dj-cmd
        
        and then
        
        ::
        
            dj run
        
        from any project's subdirectory.
        
        Features
        --------
        
        - saves typing
        - automatically locates ``manage.py`` script in current or parent directories
        - works great with virtualenv and on Windows
        
        Commands
        --------
        
        List of command aliases is a matter of personal taste, so go ahead and adjust
        it by forking the project and adding yours to the `aliases.py`_ file.
        
        Currently supported commands:
        
        - ``run`` - runserver
        - any valid ``manage.py`` command
        
        Config file
        +++++++++++
        
        Alternatively, additional aliases can be specified with the ``~/dj.ini`` file.
        
        If the ``.dj.ini`` config file is present in the user's home directory,
        it is used to populate list of command aliases.
        
        Example of the config file::
        
            [commands]
            h=help
            rs=runserver
        
        License
        -------
        
        ``dj-cmd`` is released under the BSD license.
        
        
        Similar projects
        ----------------
        
        This is not the first project of this kind. Other may suits you better,
        this works well for me.
        
        - http://pypi.python.org/pypi/django-shortcuts
        - http://pypi.python.org/pypi/Django-dj
        
        Other Resources
        ---------------
        
        - GitHub repository - https://github.com/nigma/dj-cmd
        - PyPi Package site - http://pypi.python.org/pypi/dj-cmd
        
        .. _aliases.py: https://github.com/nigma/dj-cmd/blob/master/src/aliases.py
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
