-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
29 lines (26 loc) · 950 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='SenseLink',
version='2.2.1',
description='A tool to create virtual smart plugs and inform a Sense Home Energy Monitor about usage in your home',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/cbpowell/SenseLink',
author='Charles Powell',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=['aiomqtt~=1.2',
'dpath~=2.1',
'paho-mqtt>=1.6.1',
'PyYAML~=6.0',
'websockets>=10.2'
],
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
)