-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (41 loc) · 953 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
46
47
48
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bragi"
version = "0.0.1"
description = "Turn your LLM into a poet with token interventions"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Joe Hoover" }]
requires-python = ">=3.8"
dependencies = [
"packaging",
"pydantic>1",
"requests>2",
"pyyaml",
"google-cloud-storage",
"typer",
"torch",
"phonemizer>=3.2.1",
"transformers>=4.27.1",
"pronouncing>=0.2.0",
"poesy @ git+https://github.com/quadrismegistus/poesy",
]
[tool.setuptools.packages]
find = {}
[project.optional-dependencies]
transformers = ['transformers']
dev = [
"black",
"mypy",
"pytest",
"responses",
"ruff",
"huggingface_hub",
]
[project.urls]
homepage = "https://replicate.com"
repository = "https://github.com/joehoover/bragi"
[tool.pytest.ini_options]
testpaths = "tests/"