-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
29 lines (27 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='switchbotpy',
packages=['switchbotpy'],
version='0.1.7',
license='MIT',
description='An API for Switchbots that allows to control actions, settings and timers (also password protected)',
long_description=long_description,
long_description_content_type="text/markdown",
author='Nicolas Küchler',
author_email='[email protected]',
url='https://github.com/RoButton/switchbotpy',
download_url='https://github.com/RoButton/switchbotpy/archive/v_017.tar.gz',
keywords=['Switchbot', 'Ble', 'Button', 'Actions', 'Settings', 'Timers'],
install_requires=['pygatt', 'pexpect'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)