Metadata-Version: 2.0
Name: djauto
Version: 1.2.2
Summary: Django project generator
Home-page: https://github.com/vikas-parashar/django-project-generator
Author: Vikas Parashar
Author-email: svnitvikas@gmai.com
License: MIT
Keywords: django,python,django-packages,packages
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License

Django-project-generator
========================
Create Django projects the easy way. From installing django to creating app for project, One command, that's all!

Install
-------

    pip install djauto

How to use it?
--------------

  djauto PROJECT_NAME APP_NAME

What does above command do?
---------------------------
1. Downloads latest version of [Django](https://www.djangoproject.com/) using pip
2. Creates a django project named "PROJECT_NAME" in current directory.
3. Creates and add the app named "APP_NAME" in INSTALLED_APPS in `settings.py`.
4. Asks if you want to create github repository. If yes, then
	1. Asks for github username.
	2. Creates repo named PROJECT_NAME.
	3. Asks for short description.
	4. Asks for password.
	5. Adds all file and push it on github.
5. We're done!

