forked from mezbaul-h/june
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
102 lines (90 loc) · 2.07 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=69.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "june-va"
authors = [
{name = "Mezbaul Haque"},
]
description = "Local voice assistant combining the power of Ollama, Hugging Face Transformers, and the Coqui TTS Toolkit"
keywords = [
"ai",
"ai assistant",
"chatbot",
"coqui tts",
"hugging face",
"local assistant",
"machine learning",
"natural language processing",
"nlp",
"ollama",
"python",
"speech recognition",
"speech synthesis",
"text-to-speech",
"voice assistant",
"voice commands",
"voice interaction",
"virtual assistant"
]
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "version"]
[project.scripts]
june-va = "june_va.cli:main"
[project.urls]
Homepage = "https://github.com/mezbaul-h/hypy"
Repository = "https://github.com/mezbaul-h/hypy.git"
Issues = "https://github.com/mezbaul-h/hypy/issues"
[tool.bandit]
exclude_dirs = ["venv"]
skips = ["B101"]
[tool.black]
color = true
line-length = 119
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if self.debug:",
"if settings.DEBUG",
"raise AssertionError",
"raise NotImplementedError",
"if 0:",
"if __name__ == .__main__.:",
]
[tool.coverage.run]
branch = true
omit = [
"*/test/*",
"settings.py",
]
source = ["june_va"]
[tool.isort]
color_output = true
line_length = 119
multi_line_output = 3
profile = "black"
py_version = "auto"
[tool.mypy]
exclude = ["test"]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "-ra --verbose"
testpaths = ["test"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "june_va.__version__"}
[tool.setuptools.packages]
find = {}