File: setup.py

package info (click to toggle)
pymicrobot 0.0.22-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 88 kB
  • sloc: python: 405; makefile: 7
file content (20 lines) | stat: -rw-r--r-- 662 bytes parent folder | download
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",
    ],
)