forked from AppDaemon/appdaemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·57 lines (52 loc) · 1.73 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from appdaemon.conf import (__version__)
#sudo apt-get install python3-aiohttp-dbg
REQUIRES = [
'daemonize',
'configparser',
'astral',
'requests>=2.6.0',
'sseclient',
'websocket-client',
'async',
'aiohttp>=2.2.3',
'Jinja2>=2.9.5',
'aiohttp_jinja2',
'pyyaml',
'voluptuous',
'feedparser',
'iso8601',
'bcrypt'
]
setup(
name='appdaemon',
version=__version__,
description="Apps for the Home Assistant home automation package.",
long_description="AppDaemon is a loosely coupled, multithreaded, sandboxed python execution environment for writing automation apps for Home Assistant home automation software. As of release 2.0.0 it also provides a configurable dashboard (HADashboard) suitable for wall mounted tablets.",
author='Andrew I Cockburn',
author_email='[email protected]',
url='https://github.com/home-assistant/appdaemon.git',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
include_package_data=True,
install_requires=REQUIRES,
license='Apache License 2.0',
zip_safe=False,
keywords=['appdaemon', 'home', 'automation'],
entry_points={
'console_scripts': [
'appdaemon = appdaemon.admain:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Home Automation',
],
)