setup.py 779 B

123456789101112131415161718192021
  1. from setuptools import setup
  2. setup(
  3. name="PySwitchbot",
  4. packages=["switchbot", "switchbot.devices", "switchbot.adv_parsers"],
  5. install_requires=["async_timeout>=4.0.1", "bleak>=0.17.0", "bleak-retry-connector>=1.17.1"],
  6. version="0.19.9",
  7. description="A library to communicate with Switchbot",
  8. author="Daniel Hjelseth Hoyer",
  9. url="https://github.com/Danielhiversen/pySwitchbot/",
  10. license="MIT",
  11. classifiers=[
  12. "Development Status :: 3 - Alpha",
  13. "Environment :: Other Environment",
  14. "Intended Audience :: Developers",
  15. "Operating System :: OS Independent",
  16. "Programming Language :: Python",
  17. "Topic :: Home Automation",
  18. "Topic :: Software Development :: Libraries :: Python Modules",
  19. ],
  20. )