File: __init__.py

package info (click to toggle)
python-fitbit 0.3.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: python: 1,571; makefile: 134
file content (25 lines) | stat: -rw-r--r-- 454 bytes parent folder | download | duplicates (3)
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-2019 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-2017 ORCAS'
__license__ = 'Apache 2.0'

__version__ = '0.3.1'
__release__ = '0.3.1'

# Module namespace.

all_tests = []