From 7ffab4fb0c42fecfdd2f966e81840152df5aee7a Mon Sep 17 00:00:00 2001 From: Andrey Pohilko Date: Fri, 27 Dec 2019 10:47:41 +0300 Subject: [PATCH] Publish to PyPi --- README.md | 2 +- setup.py | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a5e975f..7ecaa30 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ _Please note that this library requires one of Bluetooth backend libraries to be Install library like this: ```bash -pip install https://github.com/undera/pylgbst/archive/1.1.1.tar.gz +pip install -U pylgbst ``` Then instantiate MoveHub object and start invoking its methods. Following is example to just print peripherals detected on Hub: diff --git a/setup.py b/setup.py index da7c09d..7ab1baf 100644 --- a/setup.py +++ b/setup.py @@ -2,10 +2,15 @@ from setuptools import setup setup( name="pylgbst", - description="Python library to interact with LEGO Move Hub (from Lego BOOST set)", - version="1.1.1", + version="1.1.2", + author="Andrey Pokhilko", author_email="apc4@ya.ru", + license="MIT", + description="Python library to interact with LEGO Move Hub (from Lego BOOST set)", + url='https://github.com/undera/pylgbst', + keywords=['LEGO', 'ROBOTICS', 'BLUETOOTH'], + packages=["pylgbst", "pylgbst.comms"], requires=[], extras_require={