Metadata-Version: 1.1
Name: initpy
Version: 0.2.0
Summary: Generate Python project
Home-page: https://github.com/Parkayun/initpy
Author: Ayun Park
Author-email: iamparkayun@gmail.com
License: MIT
Description: initpy
        ======
        
        .. image:: https://pypip.in/v/initpy/badge.svg?style=flat
           :target: https://pypi.python.org/pypi/initpy/
           :alt: Latest Version
        .. image:: https://readthedocs.org/projects/initpy/badge/?version=latest
           :target: http://initpy.readthedocs.org/en/latest/
           :alt: Documentation Status
        
        Generate `Python`_ project.
        
        .. _Python: https://www.python.org/
        
        
        Installation
        -------------
        
        .. sourcecode:: bash
        
           ~ $ python setup.py install
        
        or can use pip
        
        .. sourcecode:: bash
        
           ~ $ pip install initpy
        
        
        Quick start
        -----------
        Create single Python file.
        
        .. sourcecode:: bash
        
           ~ $ init.py foo.py
           ~ $ cat foo.py
           #!/usr/bin/python
           # -*- coding:utf-8 -*-
        
        Create Python Module.
        
        .. sourcecode:: bash
           
           ~ $ init.py foo/
           ~ $ tree foo/
           foo/
           └── __init__.py
        
        Create Flask project.
        
        .. sourcecode:: bash
           
           ~ $ init.py -f bar
           ~ $ tree bar/
           bar/
            ├── app
            │   ├── __init__.py
            │   ├── common
            │   │   ├── __init__.py
            │   │   ├── models.py
            │   │   └── views.py
            │   ├── static
            │   └── templates
            │       ├── base.html
            │       └── common
            │           └── index.html
            ├── manage.py
            └── requirements
                └── dev.txt
        
        Create Tornado web project.
        
        .. sourcecode:: bash
           
           ~ $ init.py -tw bar
           ~ $ tree bar/
           bar/
            ├── app.py
            ├── handlers
            │   ├── __init__.py
            │   └── common.py
            ├── requirements
            │   └── dev.txt
            └── urls.py
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: PyPy
