diff --git a/README.md b/README.md new file mode 100644 index 0000000..edf1e67 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# Pebble Tool + +To install, from a checkout, issue: + + python -m pip install -r requirements.txt + +or: + + python setup.py develop + python setup.py install + + +Definitely works with Python 2.7. + diff --git a/requirements.txt b/requirements.txt index 125fb37..d3dc61c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ -libpebble2==0.0.26 +libpebble2==0.0.28 enum34==1.0.4 +pyparsing==2.4.7 httplib2==0.19.0 oauth2client==1.4.12 progressbar2==2.7.3 @@ -16,3 +17,4 @@ websocket-client==0.32.0 wheel==0.24.0 colorama==0.3.3 packaging==16.7 +pyreadline==2.1 diff --git a/setup.py b/setup.py index e94e9ac..5345e47 100644 --- a/setup.py +++ b/setup.py @@ -4,8 +4,9 @@ from setuptools import setup, find_packages requires = [ - 'libpebble2==0.0.26', - 'httplib2==0.9.1', + 'pyparsing==2.4.7', + 'libpebble2==0.0.28', + 'httplib2==0.19.0', 'oauth2client==1.4.12', 'progressbar2==2.7.3', 'pyasn1==0.1.8', @@ -21,6 +22,7 @@ 'wheel==0.24.0', 'colorama==0.3.3', 'packaging==16.7', + 'pyreadline==2.1', ] if sys.version_info < (3, 4, 0):