forked from smirgol/LinVAM
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (44 loc) · 1.38 KB
/
setup.py
File metadata and controls
45 lines (44 loc) · 1.38 KB
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
from setuptools import setup, find_packages
from linvam import __version__
setup(
name='LinVAM',
version=__version__,
packages=find_packages(where='.'),
include_package_data=True,
url='https://github.com/stele95/LinVAM',
license='GPL-3.0',
author='stele',
author_email='stefanstele95@hotmail.com',
description='Linux Voice Activated Macros',
install_requires=[
'PyQt6',
'srt',
'requests',
'tqdm',
'sounddevice',
'vosk'
],
keywords='macros voice linvam linvamrun',
entry_points={
'gui_scripts': [
'linvam = linvam.main:start_linvam',
],
'console_scripts': [
'linvamrun = linvam.linvamrun:start_linvamrun'
]
},
classifiers=[
'Environment :: Console',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
'Topic :: Games/Entertainment',
'Topic :: Utilities'
]
)