-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (53 loc) · 1.83 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "duplexgen"
version = "1.0.0"
description = "Adaptive synthesis of human-AI turn-taking dialogues"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [
{ name = "Takyoung Kim" },
{ name = "Kang-wook Kim" },
{ name = "Sang Hoon Woo" },
{ name = "Julia Hirschberg" },
{ name = "Gunhee Kim" },
{ name = "Dilek Hakkani-Tur" },
]
keywords = ["turn-taking", "spoken-dialogue", "full-duplex", "dialogue-synthesis"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://duplexgen.github.io/"
Repository = "https://github.com/duplexgen/duplexgen-code"
Paper = "https://arxiv.org/abs/2607.26178"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools]
# Stages 1-4 only. Stage 5 lives in tts_render/ and is run as scripts from the
# repo root, in a separate environment (see requirements-stage5.txt).
packages = ["src", "src.synthesis", "src.models"]
[tool.black]
line-length = 100
target-version = ["py310"]
extend-exclude = "duplexgen/tts/chatterbox"
[tool.ruff]
line-length = 100
target-version = "py310"
extend-exclude = ["duplexgen/tts/chatterbox"]
[tool.ruff.lint]
# Correctness only. The full default rule set reports ~500 findings on this
# codebase; gating CI on them would drown every future PR. Widen deliberately.
select = ["E9", "F"]
[tool.pytest.ini_options]
testpaths = ["tools", "src", "tts_render"]
python_files = ["test_*.py"]