setup.py 895 B

12345678910111213141516171819202122232425262728
  1. from setuptools import setup
  2. setup(
  3. name="PySwitchbot",
  4. packages=["switchbot", "switchbot.devices", "switchbot.adv_parsers"],
  5. install_requires=[
  6. "async_timeout>=4.0.1",
  7. "bleak>=0.17.0",
  8. "bleak-retry-connector>=2.9.0",
  9. "cryptography>=38.0.3",
  10. "boto3>=1.20.24",
  11. "requests>=2.28.1",
  12. ],
  13. version="0.36.4",
  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. )