forked from maoterodapena/pysouliss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 942 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
27
28
29
30
"""Setup file for souliss package."""
import os
from setuptools import setup, find_packages
if os.path.exists('README.rst'):
README = open('README.rst').read()
else:
README = ''
setup(
name='pysouliss',
version='0.0.5',
description='Python API for talking to a Souliss gateway gateway',
long_description=README,
url='https://github.com/maoterodapena/pysouliss',
author='Miguel Otero',
author_email='[email protected]',
license='MIT License',
install_requires=['paho-mqtt'],
packages=find_packages(exclude=['tests', 'tests.*']),
keywords=['sensor', 'actuator', 'IoT', 'DYI'],
zip_safe=True,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Topic :: Home Automation',
])