-
Notifications
You must be signed in to change notification settings - Fork 229
/
setup.py
121 lines (109 loc) · 3.52 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
import pip
from setuptools import setup, find_packages
from codecs import open
from os import path
basedir = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(basedir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# locate our version number
def read_version_py(file_name):
try:
version_string_line = open(file_name, "rt").read()
except EnvironmentError:
return None
else:
version_regex = r"^version_str = ['\"]([^'\"]*)['\"]"
mo = re.search(version_regex, version_string_line, re.M)
if mo:
return mo.group(1)
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
VERSION_PY_FILENAME = 'kalliope/_version.py'
version = read_version_py(VERSION_PY_FILENAME)
extra_files = package_files('kalliope/trigger/snowboy')
extra_files.append('brain.yml')
extra_files.append('settings.yml')
setup(
name='kalliope',
version=version,
description='Kalliope is a modular always-on voice controlled personal assistant designed for home automation.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/kalliope-project/kalliope',
author='The dream team of Kalliope-project',
author_email='[email protected]',
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Home Automation',
'Topic :: Multimedia :: Sound/Audio :: Speech',
'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
keywords='assistant bot TTS STT jarvis',
zip_safe=False,
# included packages
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
python_requires=">=3.6",
# required libs
install_requires=[
'Werkzeug>=2.0',
'pyyaml>=5.4.1',
'six>=1.12.0',
'SpeechRecognition>=3.8.1',
'markupsafe>=1.1.1',
'pyaudio>=0.2.11',
'pyasn1>=0.4.5',
'ansible>=4.5',
'jinja2>=2.10.1',
'cffi>=1.12.3',
'ipaddress>=1.0.17',
'flask>=2.0.1',
'Flask-Restful>=0.3.7',
'flask_cors>=3.0.8',
'requests>=2.22.0',
'httpretty>=0.8.14',
'mock>=3.0.5',
'Flask-Testing>=0.8.1',
'apscheduler>=3.6.0',
'GitPython>=2.1.11',
'packaging>=19.0',
'transitions>=0.6.9',
'sounddevice>=0.3.13',
'SoundFile>=0.10.2',
'pyalsaaudio>=0.8.4',
'paho-mqtt>=1.4.0',
'voicerss_tts>=1.0.6',
'gTTS>=2.2.3',
'urllib3>=1.25.3',
'gevent>=20.9.0'
],
# additional files
package_data={
'kalliope': extra_files,
},
# entry point script
entry_points={
'console_scripts': [
'kalliope=kalliope:main',
],
},
)