forked from robmarkcole/HASS-data-detective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.3 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
from setuptools import setup, find_packages
PROJECT_DESCRIPTION = ('Tools for studying Home-Assistant data.')
PROJECT_LONG_DESCRIPTION = ('Home Assistant is an open-source '
'home automation platform running on Python 3. '
'This package provides a set of convenience '
'functions and classes to analyse the data '
'in your Home-Assistant database. ')
REQUIRED = [
'matplotlib>=2.2.2',
'numpy>=1.14.3',
'pandas>=0.23.0',
'requests>=2.18.4',
'ruamel.yaml>=0.15.78',
'SQLAlchemy>=1.2.8',
'pytz',
]
setup(
name='HASS-data-detective',
version='1.0',
packages=find_packages(exclude=('tests',)),
url='https://github.com/robmarkcole/HASS-data-detective',
keywords=['home', 'automation'],
author='Robin Cole',
author_email='[email protected]',
description=PROJECT_DESCRIPTION,
long_description=PROJECT_LONG_DESCRIPTION,
install_requires=REQUIRED,
license='MIT',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3"]
)