-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (52 loc) · 1.57 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
from setuptools import setup, find_packages
from os import path
# README
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
extras = {
"docs": [
"sphinx~=3.4.3",
"recommonmark~=0.7.1",
"sphinx-rtd-theme~=0.5.1"
],
"voice": [
"deepspeech~=0.9.3",
"scipy>=1.1.0",
"webrtcvad~=2.0.10"
],
"interactive": [
"halo~=0.0.18",
"pyaudio~=0.2.11",
"pyttsx3~=2.90"
],
"test": [
"pytest~=6.2.1",
"pytest-cov~=2.11.1",
"pytest-asyncio~=0.14.0",
"pytest-sanic~=1.7.0"
]
}
extras["interactive"] += extras["voice"]
setup(name='askbob',
version='0.0.4',
description='A customisable, federated, privacy-safe voice assistant deployable on low-power devices.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/UCL-COMP0016-2020-Team-39/AskBob',
author='Jeremy Lo Ying Ping',
author_email='[email protected]',
packages=find_packages('.'),
install_requires=[
"numpy~=1.17.0",
"spacy~=2.2.4",
"rasa[spacy]~=2.2.9",
"sanic~=20.9.0",
"Sanic-Cors~=0.10.0.post3",
"coloredlogs~=10.0"
],
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3'
],
extras_require=extras,
include_package_data=True,
zip_safe=False)