-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
15 lines (14 loc) · 756 Bytes
/
setup.py
File metadata and controls
15 lines (14 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup
setup(name='cbpi4-SimulatedSensor',
version='0.0.2',
description='This plugin allowes you to simulate a sensor. The sensor will check if a Kettle is currently heating and will increase its value by a configurable amount. If the Kettle is not heating the temperature will be decreased by a configurable amount.',
author='prash3r',
author_email='pypi@prash3r.de',
url='https://pypi.org/project/cbpi4-SimulatedSensor/',
include_package_data=True,
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst', '*.yaml'],
'cbpi4_SimulatedSensor': ['*','*.txt', '*.rst', '*.yaml']},
packages=['cbpi4_SimulatedSensor'],
)