setup.py 678 B

123456789101112131415161718192021
  1. from setuptools import setup
  2. setup(
  3. name = 'PySwitchbot',
  4. packages = ['switchbot'],
  5. install_requires=['bleak'],
  6. version = '0.14.0',
  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. )