forked from mudpi/mudpi-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (23 loc) · 679 Bytes
/
setup.py
File metadata and controls
23 lines (23 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import find_packages, setup
from mudpi.constants import __version__
setup(
name='mudpi',
version=__version__,
description="Privacy Focused Automation for the Garden & Home",
author="Eric Davisson",
author_email="eric@mudpi.app",
url="https://mudpi.app",
include_package_data=True,
package_data={'': ['*.json', '*.yml', '*.config', '*.config.example', '*.sh']},
packages=find_packages(exclude=['tools', 'tests', 'scripts', 'debug']),
entry_points={
'console_scripts': [
'mudpi = mudpi.__main__:main',
],
},
install_requires=[
"redis",
"pyyaml",
"paho-mqtt"
]
)