Metadata-Version: 1.1
Name: gitticket
Version: 0.3
Summary: Git and issue tracking system integration
Home-page: https://www.github.com/aflc/git-ticket
Author: Hiroyuki Tanaka
Author-email: aflc0x@gmail.com
License: UNKNOWN
Description: ==========
        git-ticket
        ==========
        
        git-ticket is a git extension to help developers manage the issue/ticket tracking system.
        
        git-ticket supports **github**, **bitbucket**, and **redmine**.
        
        This tool is currentry **under development** state and not tested enough.
        
        ------------
        Installation
        ------------
        
        From PyPI::
        
            pip install gitticket
        
        or github(unstable)::
        
            pip install -e git+https://github.com/aflc/git-ticket.git#egg=git-ticket
        
        -----
        Usage
        -----
        
        configuration
        =============
        
        For github, ::
        
            git config ticket.github.token <your_access_token>
        
        To get your access token, try this::
        
            git ticket github-authorize
        
        For bitbucket, ::
        
            git config ticket.bitbucket.token <your_access_token>
            git config ticket.bitbucket.token-secret <your_access_token_secret>
        
        To get your access token and access token secret, try this::
        
            git ticket bitbucket-authorize
        
        For redmine, ::
        
            git config ticket.redmine.token <your_apikey>
            git config ticket.redmine.url <your_redmine_root>
        
        And some other settings::
        
            git config ticket.name <your_account_name_for_a_service> # if no value, guess from user.name
            git config ticket.service <service_name> # if no value, guess from origin url
            git config ticket.repo <repository_name> # if no value, guess from origin url or root derectory name.
        
        For Redmine service, you must set ticket.service=redmine.
        
        list a ticket
        =============
        
        ::
        
            git ticket list
        
        show detail
        ===========
        
        ::
        
            git ticket show <issue id>
        
        add a ticket
        ============
        
        ::
        
            git ticket add
        
        update a ticket
        ===============
        
        ::
        
            git ticket update <issue id>
        
        comment to a ticket
        ===================
        
        ::
        
            git ticket comment <issue id>
        
        close a ticket
        ==============
        
        ::
        
            git ticket close <issue id>
        
        -----------
        ReleaseNote
        -----------
        
        v0.3
            Initial release
        
        ------------  
        What's Next?
        ------------
        
        * git-flow integration
        
        -------
        License
        -------
        
        It is released under the MIT license. 
        
            Copyright (c) 2011 Hiroyuki Tanaka
            
            Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
                
            The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
                
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Natural Language :: Japanese
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Bug Tracking
Classifier: Topic :: Software Development :: Version Control
