-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 876 Bytes
/
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
[project]
name = "moshi-audio"
version = "23.10.0"
description = "Transcription and speech synthesis utilities."
readme = "README.md"
requires-python = ">=3.11,<3.12"
license = {text = "Proprietary"}
keywords = ["audio", "speech", "transcription", "synthesis"]
authors = [
{name = "Eric Kalosa-Kenyon", email = "[email protected]"}
]
dependencies = [
"av",
"google-cloud-speech",
"google-cloud-storage",
"google-cloud-translate",
"google-cloud-texttospeech",
"loguru",
"moshi-base",
"numpy",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
dev = [
"black",
"flake8",
"isort"
]
[project.urls]
Homepage = "https://www.chatmoshi.com"
Repository = "https://github.com/ekalosak/moshi-audio.git"
[tool.pytest.ini_options]
markers = [
"gcp: requires a Google Cloud Platform services.",
]
addopts = [
"--cov=moshiaud"
]