-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
39 lines (36 loc) · 1.14 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
REQUIRES = [
"pandas>=1.1.4",
"ruamel.yaml>=0.15.78",
"SQLAlchemy>=2.0.7",
"pytz",
]
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. "
)
setup(
name="HASS-data-detective",
version="3.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=REQUIRES,
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",
],
)