-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
67 lines (43 loc) · 2 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='Vasisualy',
version='0.8.1',
description='Russian voice assistant for GNU/Linux.',
license='GPLv3',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Oknolaz/vasisualy',
author='Oknolaz',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Topic :: Communications :: Chat',
'Topic :: Games/Entertainment',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: Russian',
'Operating System :: Android',
'Operating System :: POSIX :: Linux',
'Environment :: X11 Applications :: Qt',
'Programming Language :: Python :: 3',
],
keywords='voice assistant, voice, assistant, russian language',
packages=find_packages(),
package_data={
'vasisualy': ['assets/shot.wav', 'assets/misfire.wav', 'music/test.wav', 'assets/beep.wav'],
'vasisualy.ui': ['vas.png'],
'vasisualy.skills.hello_world': ['hello_world.trigger'],
'vasisualy.skills.jokes': ['jokes.trigger'],
'vasisualy.skills.guess_the_animal': ['guess_the_animal.trigger'],
},
python_requires='>=3.7, <4',
install_requires=['pyowm', 'python-vlc', 'pyaudio', 'translate', 'wikipedia', 'mss', 'qt-material', 'geocoder', 'beautifulsoup4', 'lxml', 'speechrecognition', 'pyqt5', 'pyqtwebengine', 'scipy', 'sounddevice', 'ru_word2number', 'pyalsaaudio', 'plyer'],
project_urls={
'Bug Reports': 'https://github.com/Oknolaz/vasisualy/issues/',
'Source': 'https://github.com/Oknolaz/vasisualy/',
'Releases': 'https://github.com/Oknolaz/vasisualy/releases/'
},
)