Skip to content

Commit

Permalink
Merge 91fc352 into 162f772
Browse files Browse the repository at this point in the history
  • Loading branch information
brad committed May 22, 2017
2 parents 162f772 + 91fc352 commit a8cff90
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2012 Maxime Bouroumeau-Fuseau
Copyright (C) 2012-2017 Maxime Bouroumeau-Fuseau, and ORCAS

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ here: <https://oauth.withings.com/partner/add>

Installation:

pip install https://github.com/orcasgit/python-withings/archive/master.zip#egg=withings-0.4.0
pip install pywithings

Usage:

Expand All @@ -28,5 +28,5 @@ creds = auth.get_credentials(oauth_verifier)

client = WithingsApi(creds)
measures = client.get_measures(limit=1)
print "Your last measured weight: %skg" % measures[0].weight
print "Your last measured weight: %skg" % measures[0].weight
```
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
required = [line for line in open('requirements/base.txt').read().split("\n")]

setup(
name='withings',
name='pywithings',
version='0.4.0',
description="Library for the Withings API",
author='Maxime Bouroumeau-Fuseau',
author_email='maxime.bouroumeau@gmail.com',
url="https://github.com/maximebf/python-withings",
author='Maxime Bouroumeau-Fuseau, and ORCAS',
author_email='developer@orcasinc.com',
url="https://github.com/orcasgit/python-withings",
license = "MIT License",
packages = ['withings'],
install_requires = required,
Expand Down
6 changes: 3 additions & 3 deletions withings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@

from __future__ import unicode_literals

__title__ = 'withings'
__title__ = 'pywithings'
__version__ = '0.4.0'
__author__ = 'Maxime Bouroumeau-Fuseau'
__author__ = 'Maxime Bouroumeau-Fuseau, and ORCAS'
__license__ = 'MIT'
__copyright__ = 'Copyright 2012 Maxime Bouroumeau-Fuseau'
__copyright__ = 'Copyright 2012-2017 Maxime Bouroumeau-Fuseau, and ORCAS'

__all__ = [str('WithingsCredentials'), str('WithingsAuth'), str('WithingsApi'),
str('WithingsMeasures'), str('WithingsMeasureGroup')]
Expand Down

0 comments on commit a8cff90

Please sign in to comment.