-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (74 loc) · 1.59 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
[project]
name = "moshi"
version = "23.8.23"
description = "Moshi is a spoken language tutor."
readme = "README.md"
requires-python = ">=3.7"
license = {text = "Proprietary"}
keywords = ["language", "ai", "moshi"]
authors = [
{name = "Eric Kalosa-Kenyon", email = "[email protected]"}
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Programming Language :: Python :: 3",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Topic :: Communications",
"Topic :: Education",
]
dependencies = [
"aiortc",
"aiohttp",
"aiohttp_session",
"av",
"fastapi",
"firebase_admin",
"google-auth",
"google-cloud-firestore",
"google-cloud-logging",
"google-cloud-translate",
"google-cloud-texttospeech",
"google-cloud-secret-manager",
"iso639",
"jinja2",
"loguru",
"numpy",
"openai",
"pyfiglet",
]
[project.optional-dependencies]
server = [
'gunicorn',
'uvicorn[standard]',
]
tests = [
'httpx',
'pytest',
'pytest-asyncio',
'pytest-aiohttp',
'pytest-cov',
'scipy',
'selenium',
]
dev = [
'black',
'flake8',
'isort',
]
[project.urls]
Homepage = "https://github.com/ekalosak/moshi/tree/main"
Repository = "https://github.com/ekalosak/moshi.git"
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"slow: runs more than a second or two to run",
"openai: access to the _paid_ OpenAI APIs",
"gcloud: access to the _paid_ Google Cloud APIs",
"asyncio: uses async and await",
"frontend: uses selenium and various web drivers to test web frontend",
]
# addopts = [
# "--cov=moshi"
# ]