mirror of
https://github.com/undera/pylgbst.git
synced 2020-11-18 19:37:26 -08:00
25 lines
667 B
Python
25 lines
667 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="pylgbst",
|
|
version="1.2.0",
|
|
|
|
author="Andrey Pokhilko",
|
|
author_email="apc4@ya.ru",
|
|
license="MIT",
|
|
description="Python library to interact with LEGO PoweredUp devices (Lego BOOST etc.)",
|
|
url='https://github.com/undera/pylgbst',
|
|
keywords=['LEGO', 'ROBOTICS', 'BLUETOOTH'],
|
|
|
|
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"],
|
|
"bleak": ["bleak"],
|
|
},
|
|
)
|