from setuptools import setup

setup(
    name="pylgbst",
    description="Python library to interact with LEGO Move Hub (from Lego BOOST set)",
    version="1.1.1",
    author="Andrey Pokhilko",
    author_email="apc4@ya.ru",
    packages=["pylgbst", "pylgbst.comms"],
    requires=[],
    extras_require={
        # Note that dbus and gi are normally system packages
        "gatt": ["gatt", "dbus", "gi"],
        "gattlib": ["gattlib"],
        "pygatt": ["pygatt", "pexpect"],
        "bluepy": ["bluepy"],
    },
)