setup.py 864 B

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