Metadata-Version: 1.1
Name: python-redmine
Version: 0.1.1
Summary: Library for communicating with a Redmine project management application
Home-page: https://github.com/maxtepkeev/python-redmine
Author: Max Tepkeev
Author-email: tepkeev@gmail.com
License: Copyright 2014 Max Tepkeev

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Description: Python Redmine
        ==============
        
        .. image:: https://badge.fury.io/py/python-redmine.png
            :target: http://badge.fury.io/py/python-redmine
        
        .. image:: https://pypip.in/d/python-redmine/badge.png
            :target: https://crate.io/packages/python-redmine
        
        .. image:: https://travis-ci.org/maxtepkeev/python-redmine.png?branch=master
            :target: https://travis-ci.org/maxtepkeev/python-redmine
        
        .. image:: https://coveralls.io/repos/maxtepkeev/python-redmine/badge.png?branch=master
            :target: https://coveralls.io/r/maxtepkeev/python-redmine?branch=master
        
        Python Redmine is a library for communicating with a `Redmine <http://www.redmine.org>`_
        project management application. Redmine exposes some of it's data via `REST API
        <http://www.redmine.org/projects/redmine/wiki/Rest_api>`_ for which Python Redmine provides
        a simple but powerful Pythonic API inspired by a well-known `Django ORM
        <https://docs.djangoproject.com/en/dev/topics/db/queries/>`_:
        
        .. code-block:: python
        
            >>> redmine = Redmine('http://demo.redmine.org')
            >>> project = redmine.project.get('vacation')
            >>> project.id
            30404
            >>> project.identifier
            'vacation'
            >>> project.created_on
            datetime.datetime(2013, 12, 31, 13, 27, 47)
            >>> project.issues
            <redmine.resultsets.ResourceSet object with Issue resources>
            >>> project.issues[0]
            <redmine.resources.Issue #34441 "Vacation">
            >>> dir(project.issues[0])
            ['assigned_to', 'author', 'created_on', 'description', 'done_ratio',
            'due_date', 'estimated_hours', 'id', 'priority', 'project', 'relations',
            'start_date', 'status', 'subject', 'time_entries', 'tracker', 'updated_on']
            >>> project.issues[0].subject
            'Vacation'
            >>> project.issues[0].time_entries
            <redmine.resultsets.ResourceSet object with TimeEntry resources>
        
        Dependencies
        ------------
        
        Python Redmine relies heavily on great `Requests <http://docs.python-requests.org>`_
        library by Kenneth Reitz for all the http(s) calls.
        
        Installation
        ------------
        
        To install Python Redmine, simply:
        
        .. code-block:: bash
        
            $ pip install python-redmine
        
        or:
        
        .. code-block:: bash
        
            $ easy_install python-redmine
        
        Documentation
        -------------
        
        Documentation is available at http://python-redmine.readthedocs.org.
        
        Contact and Support
        -------------------
        
        I will be glad to get your feedback, pull requests, issues, whatever. Feel free to contact me for any questions.
        
        Copyright and License
        ---------------------
        
        ``python-redmine`` is protected by Apache 2.0 licence. Check the `LICENSE
        <https://github.com/maxtepkeev/python-redmine/blob/master/LICENSE>`_ for details.
        
Keywords: redmine
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
