-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
36 lines (32 loc) · 973 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
31
32
33
34
35
36
#!/usr/bin/env python3
"""Setup for insteonplm module."""
from setuptools import setup, find_packages
def readme():
"""Return README file as a string."""
with open('README.rst', 'r') as f:
return f.read()
setup(
name='insteonplm',
version='0.16.8',
author='David McNett',
author_email='[email protected]',
url='https://github.com/nugget/python-insteonplm',
license="MIT License",
packages=find_packages(),
scripts=[],
description='Python API for controlling Insteon PowerLinc Modems',
long_description=readme(),
include_package_data=True,
zip_safe=True,
install_requires=[
'pyserial==3.2.0',
'pyserial-asyncio',
'async_timeout',
'aiohttp'
],
entry_points={
'console_scripts': ['insteonplm_monitor = insteonplm.tools:monitor',
'insteonplm_interactive = '
'insteonplm.tools:interactive']
}
)