forked from home-assistant/ada
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.22 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
"""Hey Ada!"""
from pathlib import Path
from setuptools import setup
setup(
name="ada",
version="0.8",
license="Apache License 2.0",
author="The Home Assistant Authors",
author_email="hello@home-assistant.io",
url="https://home-assistant.io/",
description="Hey Ada!",
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
],
keywords=["voice", "home-assistant", "personal"],
zip_safe=False,
platforms="any",
packages=["ada"],
install_requires=[
"requests",
"numpy",
"webrtcvad",
"pyaudio",
"importlib_metadata",
"click"
],
include_package_data=True,
)