forked from drndos/mikettle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 969 Bytes
/
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
"""Python package description."""
from setuptools import setup, find_packages
setup(
name='mikettle',
version='0.0.2',
description='This library properly authenticates with Xiaomi Mi Kettle and allows to read status and control the kettle via Bluetooth.',
url='https://github.com/drndos/mikettle',
author='drndos',
author_email='drndos@drndos.sk',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: System :: Hardware :: Hardware Drivers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
packages=find_packages(),
install_requires=['bluepy==1.3.0'],
keywords='temperature kettle smart home sensor bluetooth low-energy ble',
zip_safe=False,
extras_require={'testing': ['pytest']}
)