-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 782 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(name='cbpi4-TelegramPushNotifications',
version='0.2.5',
description='Plugin to send CraftBeerPi Notifications to a Telegram-Chat',
author='Pascal Scholz',
author_email='pascal1404@gmx.de',
url='https://github.com/pascal1404/cbpi4-TelegramPushNotifications',
include_package_data=True,
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst', '*.yaml'],
'cbpi4-TelegramPushNotifications': ['*','*.txt', '*.rst', '*.yaml']},
packages=['cbpi4-TelegramPushNotifications'],
install_requires=[
'telethon',
'influxdb-client',
'matplotlib',
'pandas',
'cryptg',
],
)