forked from AppDaemon/appdaemon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·51 lines (46 loc) · 1.45 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·51 lines (46 loc) · 1.45 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
with open('HISTORY.md') as history_file:
HISTORY = history_file.read()
REQUIREMENTS = [
'daemonize',
'configparser',
'astral',
'requests>=2.6.0',
'sseclient',
'websocket-client'
]
setup(
name='appdaemon',
version='1.5.2',
description="Apps for the Home Assistant home automation package.",
long_description=README + '\n\n' + HISTORY,
author='Andrew I Cockburn',
author_email='appdaemon@acockburn.com',
url='https://github.com/home-assistant/appdaemon.git',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
include_package_data=True,
install_requires=REQUIREMENTS,
license='Apache License 2.0',
zip_safe=False,
keywords=['appdaemon', 'home', 'automation'],
entry_points={
'console_scripts': [
'appdaemon = appdaemon.main:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Home Automation',
],
)