forked from aievolutionpl/VoxFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (51 loc) · 1.74 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
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "voxflow"
version = "1.0.0"
description = "VoxFlow — Lokalne rozpoznawanie mowy (Speech-to-Text) dla Windows. 100% offline, wspiera polski i angielski."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "AI Evolution Polska"},
]
keywords = ["speech-to-text", "whisper", "polish", "dictation", "offline", "voxflow"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Natural Language :: Polish",
"Natural Language :: English",
]
dependencies = [
"faster-whisper>=1.0.0,<2.0.0",
"sounddevice>=0.4.6,<1.0.0",
"numpy>=1.24.0,<3.0.0",
"customtkinter>=5.2.0,<6.0.0",
"keyboard>=0.13.5,<1.0.0",
"pystray>=0.19.5,<1.0.0",
"Pillow>=10.0.0,<12.0.0",
"pyperclip>=1.8.2,<2.0.0",
"scipy>=1.11.0,<2.0.0",
]
[project.urls]
Homepage = "https://github.com/aievolutionpl/VoxFlow"
Repository = "https://github.com/aievolutionpl/VoxFlow"
Issues = "https://github.com/aievolutionpl/VoxFlow/issues"
Changelog = "https://github.com/aievolutionpl/VoxFlow/blob/main/CHANGELOG.md"
[project.scripts]
voxflow = "voxflow.main:main"
[tool.setuptools.packages.find]
include = ["voxflow*"]
[tool.setuptools.package-data]
voxflow = ["*.py"]