forked from rytilahti/python-miio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (28 loc) · 1001 Bytes
/
setup.py
File metadata and controls
37 lines (28 loc) · 1001 Bytes
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
30
31
32
33
34
35
36
37
from setuptools import setup
with open('mirobo/version.py') as f: exec(f.read())
setup(
name='python-mirobo',
version=__version__,
description='Python library for interfacing with Xiaomi Vacuum cleaner robot',
url='https://github.com/rytilahti/python-mirobo',
author='Teemu Rytilahti',
author_email='tpr@iki.fi',
license='GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
keywords='xiaomi vacuum',
packages=["mirobo"],
install_requires=['construct', 'click', 'cryptography', 'pretty_cron', 'typing', 'zeroconf'],
entry_points={
'console_scripts': [
'mirobo=mirobo.vacuum_cli:cli',
'miplug=mirobo.plug_cli:cli',
'miceil=mirobo.ceil_cli:cli',
'mieye=mirobo.philips_eyecare_cli:cli'
],
},
)