Metadata-Version: 2.1
Name: fitbit
Version: 0.3.1
Summary: Fitbit API Wrapper.
Home-page: https://github.com/orcasgit/python-fitbit
Author: Issac Kelly and ORCAS
Author-email: bpitcher@orcasinc.com
License: Apache 2.0
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: PyPy
License-File: LICENSE
License-File: AUTHORS
Requires-Dist: python-dateutil>=1.5
Requires-Dist: requests-oauthlib>=0.7

python-fitbit
=============

.. image:: https://travis-ci.org/orcasgit/python-fitbit.svg?branch=master
   :target: https://travis-ci.org/orcasgit/python-fitbit
   :alt: Build Status
.. image:: https://coveralls.io/repos/orcasgit/python-fitbit/badge.png?branch=master
   :target: https://coveralls.io/r/orcasgit/python-fitbit?branch=master
   :alt: Coverage Status
.. image:: https://requires.io/github/orcasgit/python-fitbit/requirements.png?branch=master
   :target: https://requires.io/github/orcasgit/python-fitbit/requirements/?branch=master
   :alt: Requirements Status
.. image:: https://badges.gitter.im/orcasgit/python-fitbit.png
   :target: https://gitter.im/orcasgit/python-fitbit
   :alt: Gitter chat

Fitbit API Python Client Implementation

For documentation: `http://python-fitbit.readthedocs.org/ <http://python-fitbit.readthedocs.org/>`_

Requirements
============

* Python 2.7+
* `python-dateutil`_ (always)
* `requests-oauthlib`_ (always)
* `Sphinx`_ (to create the documention)
* `tox`_ (for running the tests)
* `coverage`_ (to create test coverage reports)

.. _python-dateutil: https://pypi.python.org/pypi/python-dateutil/2.4.0
.. _requests-oauthlib: https://pypi.python.org/pypi/requests-oauthlib
.. _Sphinx: https://pypi.python.org/pypi/Sphinx
.. _tox: https://pypi.python.org/pypi/tox
.. _coverage: https://pypi.python.org/pypi/coverage/

To use the library, you need to install the run time requirements:

   sudo pip install -r requirements/base.txt

To modify and test the library, you need to install the developer requirements:

   sudo pip install -r requirements/dev.txt

To run the library on a continuous integration server, you need to install the test requirements:

   sudo pip install -r requirements/test.txt
