setup.py 892 B

12345678910111213141516171819202122232425262728
  1. from setuptools import setup
  2. setup(
  3. name="PySwitchbot",
  4. packages=["switchbot", "switchbot.devices", "switchbot.adv_parsers"],
  5. install_requires=[
  6. "bleak>=0.19.0",
  7. "bleak-retry-connector>=3.4.0",
  8. "cryptography>=39.0.0",
  9. "pyOpenSSL>=23.0.0",
  10. "boto3>=1.20.24",
  11. "requests>=2.28.1",
  12. ],
  13. version="0.44.1",
  14. description="A library to communicate with Switchbot",
  15. author="Daniel Hjelseth Hoyer",
  16. url="https://github.com/Danielhiversen/pySwitchbot/",
  17. license="MIT",
  18. classifiers=[
  19. "Development Status :: 3 - Alpha",
  20. "Environment :: Other Environment",
  21. "Intended Audience :: Developers",
  22. "Operating System :: OS Independent",
  23. "Programming Language :: Python",
  24. "Topic :: Home Automation",
  25. "Topic :: Software Development :: Libraries :: Python Modules",
  26. ],
  27. )