1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
from setuptools import setup
setup(
name="PyMicroBot",
packages=["microbot"],
install_requires=["bleak>=0.19.0", "bleak-retry-connector>=1.4.0"],
version="0.0.22",
description="A library to communicate with MicroBot",
author="spycle",
url="https://github.com/spycle/pyMicroBot/",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
|