File: __init__.py

package info (click to toggle)
python-fitbit 0.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 256 kB
  • ctags: 200
  • sloc: python: 1,227; makefile: 132
file content (24 lines) | stat: -rw-r--r-- 431 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
# -*- coding: utf-8 -*-
"""
Fitbit API Library
------------------

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

from .api import Fitbit, FitbitOauthClient

# Meta.

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

__version__ = '0.1.2'

# Module namespace.

all_tests = []