Metadata-Version: 2.0
Name: moniker
Version: 0.0.1
Summary: Simple batch file renaming tool.
Home-page: https://github.com/jjangsangy/moniker.git
Author: Sang Han
Author-email: jjangsangy@gmail.com
License: Apache License 2.0
Download-URL: https://github.com/jjangsangy/moniker.git
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Unix Shell
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities

Moniker
=======

A simple batch file rename tool.

||Build Status|| |target|

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

Moniker is a simple Python utility for renaming and manipulating the
filesystem based off similar project and work from `Irving
Ruan <https://github.com/irvingruan/Moniker.git>`__.

Currently work in progress
--------------------------

Clone the repository

.. code:: bash

        $ git clone https://github.com/jjangsangy/moniker.git

Install

.. code:: bash

        $ python setup.py install

Usage
=====

.. code:: sh

        $ moniker . .py .python

.. code:: javascript

    {
        ".": [
            {
                "setup.py": "setup.python"
            }
        ], 
        "docs": [
            {
                "conf.py": "conf.python"
            }
        ], 
        "moniker": [
            {
                "__init__.py": "__init__.python"
            }, 
            {
                "__main__.py": "__main__.python"
            }, 
            {
                "__version__.py": "__version__.python"
            }, 
            {
                "moniker.py": "moniker.python"
            }
        ], 
        "moniker/tests": [
            {
                "__init__.py": "__init__.python"
            }, 
            {
                "test_main.py": "test_main.python"
            }
        ]
    }

.. ||Build Status|| image:: https://travis-ci.org/jjangsangy/Moniker
.. |Build Status| image:: https://travis-ci.org/jjangsangy/Moniker.svg?branch=master
.. |target| image:: https://badge.fury.io/py/py-translate.svg?branch=master


.. :changelog:

Release History
===============

v0.0.1 test (2014-10-16)
++++++++++++++++++++++++
- Minimum functionality, testing upload to PyPi
- Docset generation
- Travis CI Integration testing


