forked from albertogeniola/MerossIot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.6 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='meross_iot',
version='0.3.1.6',
packages=find_packages(exclude=('tests',)),
url='https://github.com/albertogeniola/MerossIot',
license='MIT',
author='Alberto Geniola',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
],
description='A simple library to deal with Meross devices. At the moment MSS110, MSS210, MSS310, MSS310H '
'smart plugs and the MSS425E power strip. Other meross device might work out of the box with limited '
'functionality. Give it a try and, in case of problems, let the developer know by opening an issue '
'on Github.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='meross smartplug smartbulb iot mqtt domotic switch mss310 mss210 mss110 mss425e msl20 msg100',
project_urls={
'Documentation': 'https://github.com/albertogeniola/MerossIot',
'Funding': 'https://donate.pypi.org',
'Source': 'https://github.com/albertogeniola/MerossIot',
'Tracker': 'https://github.com/albertogeniola/MerossIot/issues',
},
install_requires=[
'paho-mqtt>=1.3.1',
'requests>=2.19.1',
'retrying>=1.3.3',
],
python_requires='>=3.5',
test_suite='tests'
)