File: __init__.py

package info (click to toggle)
python-fitbit 0.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 248 kB
  • ctags: 232
  • sloc: python: 1,437; makefile: 135
file content (25 lines) | stat: -rw-r--r-- 454 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- coding: utf-8 -*-
"""
Fitbit API Library
------------------

:copyright: 2012-2015 ORCAS.
:license: BSD, see LICENSE for more details.
"""

from .api import Fitbit, FitbitOauth2Client

# Meta.

__title__ = 'fitbit'
__author__ = 'Issac Kelly and ORCAS'
__author_email__ = 'bpitcher@orcasinc.com'
__copyright__ = 'Copyright 2012-2015 ORCAS'
__license__ = 'Apache 2.0'

__version__ = '0.2.4'
__release__ = '0.2.4'

# Module namespace.

all_tests = []