-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (48 loc) · 1.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
[project]
name = "moshi-base"
version = "23.10.0"
description = "Lightweight tools used across all ChatMoshi components."
readme = "README.md"
requires-python = ">=3.11,<3.12"
license = {text = "Proprietary"}
keywords = ["language", "ai", "moshi", "base", "types", "storage"]
authors = [
{name = "Eric Kalosa-Kenyon", email = "[email protected]"}
]
dependencies = [
"iso639",
"isocodes",
"firestore_size",
"google-cloud-firestore",
"google-cloud-storage",
"google-cloud-translate",
"langcodes[data]",
"loguru",
"openai",
"pydantic",
"tiktoken",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
dev = [
"black",
"flake8",
"isort",
"pyfiglet"
]
[project.urls]
Homepage = "https://www.chatmoshi.com"
Repository = "https://github.com/ekalosak/moshi-base.git"
[tool.pytest.ini_options]
markers = [
"slow: runs more than a second or two to run",
"fb: requires an emulated firebase instance to run",
"openai: requires openai api key to run",
"gcp: requires google cloud credentials to run",
]
addopts = [
"--cov=moshi"
]